add run section to buildbot.json

This commit is contained in:
Henning Peters 2016-02-26 23:04:33 +01:00
parent d3a65ef261
commit ee4c4f6a77

View File

@ -5,18 +5,19 @@
"python setup.py sdist"
],
"install": [
"pip install -v source.tar.gz",
"python -m spacy.en.download --force"
"pip install -v source.tar.gz"
],
"wheel": [
"python untar.py source.tar.gz .",
"python setup.py bdist_wheel",
"python cpdist.py dist",
"python -m spacy.en.download --force"
"python cpdist.py dist"
]
},
"test": {
"after": ["install", "wheel"],
"run": [
"python -m spacy.en.download --force"
],
"package": "spacy",
"args": "--tb=native -x --models --vectors --slow"
}