running tests BEFORE deleting them ?

This commit is contained in:
svlandeg 2020-02-24 09:38:43 +01:00
parent 6f846c2cbf
commit 217c16c7a9
1 changed files with 3 additions and 2 deletions

View File

@ -84,6 +84,9 @@ jobs:
pip install -r requirements.txt pip install -r requirements.txt
displayName: 'Install dependencies' displayName: 'Install dependencies'
- script: python -m pytest spacy
displayName: 'Run tests'
- script: | - script: |
python setup.py build_ext --inplace python setup.py build_ext --inplace
python setup.py sdist --formats=gztar python setup.py sdist --formats=gztar
@ -99,5 +102,3 @@ jobs:
pip install dist/$SDIST pip install dist/$SDIST
displayName: 'Install from sdist' displayName: 'Install from sdist'
- script: python -m pytest spacy
displayName: 'Run tests'