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