Skip to content

Commit

Permalink
fix: travis run
Browse files Browse the repository at this point in the history
  • Loading branch information
joamag committed Sep 1, 2021
1 parent 268e9a9 commit 2f45999
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Expand Up @@ -21,9 +21,9 @@ before_install:
- pip install --upgrade pip setuptools
install:
- pip install -r requirements.txt
- pip install coveralls
script: coverage run --source=twitter 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=twitter setup.py test; else python setup.py test; fi
after_success: if [[ $TRAVIS_PYTHON_VERSION != pypy* ]]; then coveralls; fi
deploy:
provider: pypi
user: joamag
Expand Down

0 comments on commit 2f45999

Please sign in to comment.