Skip to content

Commit 2a8f128

Browse files
committed
fixup! Add codecov.
1 parent b78f43a commit 2a8f128

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ install:
2424
- bash requirements-install.sh
2525

2626
script:
27-
- coverage run -m pytest
27+
- if [[ $TRAVIS_PYTHON_VERSION == pypy* ]]; py.test; fi
28+
- if [[ $TRAVIS_PYTHON_VERSION != pypy* ]]; coverage run -m pytest; fi
2829
- bash flake8-run.sh
2930

3031
after_script:
3132
- python debug-info.py
3233

3334
after_success:
34-
- coverage combine
35-
- codecov
35+
- if [[ $TRAVIS_PYTHON_VERSION != pypy* ]]; coverage combine && codecov; fi

0 commit comments

Comments
 (0)