Commit 9ebc01b0 authored by wbond's avatar wbond

Improve dependencies test, fix broken dependencies

parent 17a1c4cf
......@@ -325,6 +325,7 @@
"name": "pathtools",
"load_order": "50",
"description": "Path utilities for Python https://pypi.python.org/pypi/pathtools",
"author": "vovkkk",
"issues": "https://github.com/vovkkk/sublime-pathtools/issues",
"releases": [
{
......@@ -634,6 +635,7 @@
"name": "watchdog",
"load_order": "20",
"description": "Python library to monitor filesystem events http://packages.python.org/watchdog/",
"author": "vovkkk",
"issues": "https://github.com/vovkkk/sublime-watchdog/issues",
"releases": [
{
......
......@@ -371,6 +371,8 @@ class TestContainer(object):
elif k == 'load_order':
self.assertRegex(v, '^\d\d$', '"load_order" must be a two '
'digit string')
for key in ('author', 'releases', 'issues', 'description', 'load_order'):
self.assertIn(key, data, '%r is required for dependencies' % key)
pck_release_key_types_map = {
'base': str_cls,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment