We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf13e6e commit c64780cCopy full SHA for c64780c
azure-pipelines.yml
@@ -32,14 +32,17 @@ steps:
32
flake8 bashplot/ --count --max-line-length=88 --ignore=W293,W291 --statistic
33
black bashplot/ --check -v
34
pydocstyle bashplot/bashplot.py
35
- pip install coverage
36
displayName: 'Install dependencies'
37
38
- script: |
39
python setup.py install
40
displayName: 'Install bashplot'
41
42
43
- pip install pytest pytest-azurepipelines
44
- pytest
+
+ pip install coverage
+ pipt install pytest-azurepipelines
45
+ cd test
46
+ coverage run -m unittest test_bashplot.py
47
+ coverage report
48
displayName: 'pytest'
0 commit comments