File tree 1 file changed +9
-6
lines changed 1 file changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -52,18 +52,15 @@ jobs:
52
52
pip install black
53
53
displayName: 'Install dependencies'
54
54
55
- - script : |
56
- pip install pytest
57
- pip install pytest-cov
58
- pip install coveralls
59
- displayName: PyTestSetup
60
-
61
55
- task : UsePythonVersion@0
62
56
displayName : ' Use Python $(python.36)'
63
57
inputs :
64
58
versionSpec : ' $(python.36)'
65
59
66
60
- script :
61
+ pip install pytest
62
+ pip install pytest-cov
63
+ pip install coveralls
67
64
python -m pytest --junitxml=junit/test-results.36.xml --cov-config=.coveragerc --cov --cov-report=xml --cov-report=html
68
65
displayName : Pytest.36
69
66
79
76
versionSpec : ' $(python.37)'
80
77
81
78
- script :
79
+ pip install pytest
80
+ pip install pytest-cov
81
+ pip install coveralls
82
82
python -m pytest --junitxml=junit/test-results.37.xml --cov-config=.coveragerc --cov --cov-report=xml --cov-report=html
83
83
displayName : Pytest.37
84
84
94
94
versionSpec : ' $(python.38)'
95
95
96
96
- script :
97
+ pip install pytest
98
+ pip install pytest-cov
99
+ pip install coveralls
97
100
python -m pytest --junitxml=junit/test-results.38.xml --cov-config=.coveragerc --cov --cov-report=xml --cov-report=html
98
101
displayName : Pytest.38
99
102
You can’t perform that action at this time.
0 commit comments