Skip to content

Commit

Permalink
fix: conditional coveralls
Browse files Browse the repository at this point in the history
  • Loading branch information
joamag committed May 8, 2021
1 parent 5b8bdc5 commit 3bc75c5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ before_install:
install:
- pip install -r requirements.txt
- pip install -r extra.txt
- pip install coveralls
script: coverage run --source=appier_console setup.py test
after_success: coveralls
- if [[ $TRAVIS_PYTHON_VERSION != pypy* ]]; then pip install coveralls; fi
script: if [[ $TRAVIS_PYTHON_VERSION != pypy* ]]; then coverage run --source=appier_console setup.py test; else python setup.py test; fi
after_success: if [[ $TRAVIS_PYTHON_VERSION != pypy* ]]; then coveralls; fi

0 comments on commit 3bc75c5

Please sign in to comment.