Skip to content

Commit

Permalink
Update .travis.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
andamian committed Apr 27, 2020
1 parent b8a5457 commit 650504a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Expand Up @@ -19,7 +19,7 @@ script:
- for i in $(ls -d */); do
cd $i;
pytest --cov $i || exit 1;
if [[ $TRAVIS_PYTHON_VERSION == '3.5' ]]; then
if [[ $TRAVIS_PYTHON_VERSION == '3.7' ]]; then
flake8 -v $i || exit -1;
fi;
cd ..;
Expand All @@ -30,15 +30,15 @@ after_success:
# below and replace "packagename" with the name of your package.
# The coveragerc file may be customized as needed for your package.
# Run coverage for all Python versions but submit only once - 3.5
- if [[ $TRAVIS_PYTHON_VERSION == '3.5' ]]; then coverage combine $(ls -d */.coverage) || exit 1; coveralls; fi
- if [[ $TRAVIS_PYTHON_VERSION == '3.7' ]]; then coverage combine $(ls -d */.coverage) || exit 1; coveralls; fi

jobs:
include:
#- stage: intTest
#python: 3.5
#python: 3.7
#script: ./.intTest
- stage: publish
python: 3.4
python: 3.7
deploy:
provider: script
script: ./.publish.sh
Expand Down

0 comments on commit 650504a

Please sign in to comment.