Skip to content

Commit 3f287c6

Browse files
committed
Update azure-pipelines.yml for Azure Pipelines
1 parent b1fe4bf commit 3f287c6

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

azure-pipelines.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,11 @@ steps:
2626
displayName: 'Use Python $(python.version)'
2727

2828
- script: |
29-
pip install pytest
30-
pip install pytest-cov
31-
pytest tests --doctest-modules --junitxml=junit/test-results.xml --cov=com --cov-report=xml --cov-report=html
32-
displayName: 'Test with pytest'
29+
python -m pip install --upgrade pip
30+
pip install pytest pytest-azurepipelines
31+
pip install -e .
32+
displayName: 'Install dependencies'
33+
34+
- script: |
35+
python -m pytest libraries/
36+
displayName: 'pytest'

0 commit comments

Comments
 (0)