Skip to content

Commit 75cc6c0

Browse files
committed
also use codecov bash uploader in travis jobs since codecov-python has more issues to resolve
Signed-off-by: oleg.hoefling <oleg.hoefling@gmail.com>
1 parent 5531e09 commit 75cc6c0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,14 @@ addons:
3535
- lcov
3636
install:
3737
- travis_retry pip install --upgrade pip setuptools wheel
38-
- travis_retry pip install coverage codecov -r requirements-test.txt --upgrade --force-reinstall
38+
- travis_retry pip install coverage -r requirements-test.txt --upgrade --force-reinstall
3939
- travis_retry pip install -e "."
4040
- pip list
4141
script: coverage run -m pytest -v tests --color=yes
4242
after_success:
4343
- lcov --capture --directory . --output-file coverage.info
4444
- lcov --list coverage.info
45-
- codecov --file coverage.info
45+
- bash <(curl -s https://codecov.io/bash) -f coverage.info
4646
before_deploy:
4747
- travis_retry pip install Sphinx -r doc/source/requirements.txt
4848
- git apply --verbose --no-index --unsafe-paths --directory=$(python -c "import site; print(site.getsitepackages()[0])") doc/source/sphinx-pr-6916.diff

0 commit comments

Comments
 (0)