spaCy/buildbot.json
2016-02-09 15:31:55 +01:00

20 lines
470 B
JSON

{
"build": {
"sdist": [
"python pip-clear.py",
"pip install -r requirements.txt",
"python setup.py sdist"
],
"install": [
"python pip-clear.py",
"pip install source.tar.gz",
"python -m spacy.en.download --force"
]
},
"test": {
"after": ["install"],
"package": "spacy",
"args": "--tb='native' -x --models --vectors --slow"
}
}