Skip to content

Commit c64780c

Browse files
committed
Update azure-pipelines.yml for Azure Pipelines
1 parent cf13e6e commit c64780c

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

azure-pipelines.yml

+6-3
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,17 @@ steps:
3232
flake8 bashplot/ --count --max-line-length=88 --ignore=W293,W291 --statistic
3333
black bashplot/ --check -v
3434
pydocstyle bashplot/bashplot.py
35-
pip install coverage
3635
displayName: 'Install dependencies'
3736

3837
- script: |
3938
python setup.py install
4039
displayName: 'Install bashplot'
4140

4241
- script: |
43-
pip install pytest pytest-azurepipelines
44-
pytest
42+
43+
pip install coverage
44+
pipt install pytest-azurepipelines
45+
cd test
46+
coverage run -m unittest test_bashplot.py
47+
coverage report
4548
displayName: 'pytest'

0 commit comments

Comments
 (0)