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
1 changed files with 3 additions and 1 deletions

View File

@ -107,5 +107,7 @@ jobs:
pip install dist/$SDIST pip install dist/$SDIST
displayName: 'Install from 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' displayName: 'Run tests'