Skip to content

Commit

Permalink
fixup! Fix build command
Browse files Browse the repository at this point in the history
  • Loading branch information
pganssle committed Nov 2, 2019
1 parent 0b3471b commit 4ec3d1f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Expand Up @@ -23,10 +23,10 @@ install:
script:
- tox
- if [[ $TOXENV == "build" ]]; then
- # Check that exactly one tarball and one wheel are created
- [ $(find . -iwholename 'dist/*.tar.gz' | wc -l) -eq 1 ]
- [ $(find . -iwholename 'dist/*.whl' | wc -l) -eq 1 ]
- fi
# Check that exactly one tarball and one wheel are created
[ $(find . -iwholename 'dist/*.tar.gz' | wc -l) -eq 1 ]
[ $(find . -iwholename 'dist/*.whl' | wc -l) -eq 1 ]
fi

after_success:
- if [[ $TOXENV == "py" ]]; then tox -e coverage,codecov; fi

0 comments on commit 4ec3d1f

Please sign in to comment.