it's moving day

This commit is contained in:
svlandeg 2020-02-24 10:04:24 +01:00
parent 217c16c7a9
commit d5bfebe1c5

View File

@ -84,21 +84,20 @@ jobs:
pip install -r requirements.txt
displayName: 'Install dependencies'
- script: python -m pytest spacy
displayName: 'Run tests'
- script: |
python setup.py build_ext --inplace
python setup.py sdist --formats=gztar
displayName: 'Compile and build sdist'
- task: DeleteFiles@1
inputs:
contents: 'spacy'
displayName: 'Delete source directory'
- bash: |
SDIST=$(python -c "import os;print(os.listdir('./dist')[-1])" 2>&1)
pip install dist/$SDIST
displayName: 'Install from sdist'
- script: python -m pytest spacy
displayName: 'Run tests'
- task: DeleteFiles@1
inputs:
contents: 'spacy'
displayName: 'Delete source directory'