File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -49,20 +49,20 @@ steps:
49
49
50
50
- bash : |
51
51
python -m pip install --upgrade pip
52
- pip install -r requirements/testing/travis_all.txt -r requirements/testing/travis36.txt ||
52
+ python -m pip install -r requirements/testing/travis_all.txt -r requirements/testing/travis36.txt ||
53
53
[[ "$PYTHON_VERSION" = 'Pre' ]]
54
54
displayName : ' Install dependencies with pip'
55
55
56
56
- bash : |
57
- MPLLOCALFREETYPE=1 pip install -ve . ||
57
+ MPLLOCALFREETYPE=1 python -m pip install -ve . ||
58
58
[[ "$PYTHON_VERSION" = 'Pre' ]]
59
59
displayName : " Install self"
60
60
61
61
- script : env
62
62
displayName : ' print env'
63
63
64
64
- bash : |
65
- PYTHONFAULTHANDLER=1 pytest --junitxml=junit/test-results.xml -raR --maxfail=50 --timeout=300 --durations=25 --cov-report= --cov=lib -n 2 ||
65
+ PYTHONFAULTHANDLER=1 python -m pytest --junitxml=junit/test-results.xml -raR --maxfail=50 --timeout=300 --durations=25 --cov-report= --cov=lib -n 2 ||
66
66
[[ "$PYTHON_VERSION" = 'Pre' ]]
67
67
displayName : ' pytest'
68
68
You can’t perform that action at this time.
0 commit comments