Skip to content

Commit

Permalink
fix issue: codecov #6
Browse files Browse the repository at this point in the history
  • Loading branch information
skasberger committed Apr 7, 2021
1 parent 0b9de59 commit 7cf1982
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ matrix:
env: TOXENV=docs
- python: 3.6
env: TOXENV=coverage
- python: 3.6
env: TOXENV=codecov

branches:
only:
Expand All @@ -26,6 +28,8 @@ before_install:
install:
- pip install --upgrade pip
- pip install tox-travis
- pip install coverage
- pip install codecov
- virtualenv --version
- easy_install --version
- pip --version
Expand All @@ -36,6 +40,7 @@ script:

after_success:
- bash <(curl -s https://codecov.io/bash)
- codecov

notifications:
email:
Expand Down
7 changes: 7 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,13 @@ deps =
commands =
pytest tests/ --cov=pyDataverse --cov-report=term-missing --cov-report=xml --cov-report=html

[testenv:codecov]
description = create report for codecov
deps =
codecov
commands =
codecov

[testenv:pylint]
description = pylint for linting
deps =
Expand Down

0 comments on commit 7cf1982

Please sign in to comment.