Skip to content

Commit

Permalink
Fix: coveralls package on .travis.yml config
Browse files Browse the repository at this point in the history
  • Loading branch information
meherett committed Oct 23, 2023
1 parent 0b68191 commit 31b44eb
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ dist: bionic
before_install:
- python -m pip install --upgrade pip
install:
- pip install -e .[tests,docs] tox-travis coveralls
- pip install -e .[tests,docs] tox-travis
- curl -L https://coveralls.io/coveralls-linux.tar.gz | tar -xz -C .
matrix:
include:
- name: "3.9"
Expand All @@ -13,4 +14,7 @@ matrix:
- name: "3.11"
python: 3.11
script: tox
after_success: if [ "${TRAVIS_PYTHON_VERSION}" == "3.11" ]; then coveralls; fi;
after_success:
- if [ "${TRAVIS_PYTHON_VERSION}" == "3.11" ];
then ./coveralls report --repo-token=E8y6cerK5DVDZocB7eHTdzBKjdwQDkJzw;
fi;

0 comments on commit 31b44eb

Please sign in to comment.