Install dev requirements before running tests

This commit is contained in:
Adriane Boyd 2020-11-16 10:59:50 +01:00
parent 53493b032a
commit 6f014efb97

View File

@ -107,5 +107,7 @@ jobs:
pip install dist/$SDIST
displayName: 'Install from sdist'
- script: python -m pytest --pyargs spacy
- script: |
pip install -r requirements.txt
python -m pytest --pyargs spacy
displayName: 'Run tests'