Skip to content

Commit

Permalink
Use codecov-python
Browse files Browse the repository at this point in the history
Currently codecov-bash is used, which involves an uncached fetch
of a unversioned bash script.
Using codecov-python allows the tool to be cached, and greater
reliability due to versioned releases of the tool.

In addition, codecov-bash does not work on Windows, and our
developer base is better tuned to investigate any python
related problems.

Fixes coala#3718
  • Loading branch information
jayvdb committed Feb 8, 2017
1 parent 0037045 commit 90378e0
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 8 deletions.
6 changes: 0 additions & 6 deletions .misc/deploy.coverage.sh

This file was deleted.

2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ script:
make -C docs clean
python setup.py docs
fi
- bash .misc/deploy.coverage.sh
- codecov

notifications:
email: false
Expand Down
2 changes: 1 addition & 1 deletion circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ test:
timeout: 900 # Allow 15 mins
- coala --non-interactive:
parallel: true
- bash .misc/deploy.coverage.sh:
- codecov:
parallel: true
- make -C docs clean
- python setup.py docs
1 change: 1 addition & 0 deletions test-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
coverage~=4.0
codecov~=2.0.5
pytest~=3.0
pytest-cov~=2.2
pytest-env~=0.6.0
Expand Down

0 comments on commit 90378e0

Please sign in to comment.