Temporarily run mypy and tests with newest wasabi

This commit is contained in:
Adriane Boyd 2022-12-07 17:03:13 +01:00
parent a003176d53
commit e677a2257c

View File

@ -24,6 +24,8 @@ steps:
displayName: "Build sdist" displayName: "Build sdist"
- script: | - script: |
# TEMP: test with newest wasabi
python -m pip install -U wasabi
python -m mypy spacy python -m mypy spacy
displayName: 'Run mypy' displayName: 'Run mypy'
condition: ne(variables['python_version'], '3.6') condition: ne(variables['python_version'], '3.6')
@ -100,6 +102,8 @@ steps:
- script: | - script: |
python -m pip install -U -r requirements.txt python -m pip install -U -r requirements.txt
# TEMP: test with newest wasabi
python -m pip install -U wasabi
displayName: "Install test requirements" displayName: "Install test requirements"
- script: | - script: |