8000
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 fb8e592 commit c3ca303Copy full SHA for c3ca303
.travis.yml
@@ -26,12 +26,12 @@ install:
26
- bash requirements-install.sh
27
28
script:
29
- - if [[ $TRAVIS_PYTHON_VERSION == pypy* ]]; py.test; fi
30
- - if [[ $TRAVIS_PYTHON_VERSION != pypy* ]]; coverage run -m pytest; fi
+ - if [[ $TRAVIS_PYTHON_VERSION == pypy* ]]; then py.test; fi
+ - if [[ $TRAVIS_PYTHON_VERSION != pypy* ]]; then coverage run -m pytest; fi
31
- bash flake8-run.sh
32
33
after_script:
34
- python debug-info.py
35
36
after_success:
37
- - if [[ $TRAVIS_PYTHON_VERSION != pypy* ]]; coverage combine && codecov; fi
+ - if [[ $TRAVIS_PYTHON_VERSION != pypy* ]]; then coverage combine && codecov; fi
0 commit comments