We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e340b1a commit 538baf1Copy full SHA for 538baf1
.travis.yml
@@ -37,10 +37,11 @@ cache:
37
- $HOME/.cache/pip
38
- .pytest_cache
39
install:
40
+ - if [ "$TRAVIS_OS_NAME" = "windows" ]; then python3 -m pip install --upgrade pip ; fi
41
+ - if [ "$TRAVIS_OS_NAME" != "windows" ]; then pip3 install --upgrade pip ; fi
42
- pip3 install pytest
43
- pip3 install pytest-cov
44
- pip3 install codacy-coverage
- - pip3 install --upgrade pip
45
- pip3 install -r requirements.txt
46
script:
47
- pytest -v --cov --cov-report xml
0 commit comments