move testing requirements to requirements_test.txt, add pytest-asyncio for azure pipelines (#20)

This commit is contained in:
Teemu R 2020-01-14 18:58:39 +01:00 committed by GitHub
parent 87c0dab8c8
commit 4a4b9c655a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View File

@ -23,7 +23,7 @@ steps:
- script: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest pytest-azurepipelines pytest-cov
pip install -r requirements_test.txt
displayName: 'Install dependencies'
- script: |

4
requirements_test.txt Normal file
View File

@ -0,0 +1,4 @@
pytest
pytest-azurepipelines
pytest-cov
pytest-asyncio