Skip to content
This repository has been archived by the owner on Jan 16, 2023. It is now read-only.

Commit

Permalink
fix: quote commands
Browse files Browse the repository at this point in the history
  • Loading branch information
antonagestam committed Aug 12, 2019
1 parent 79f3393 commit cb12fa5
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 @@ -17,9 +17,9 @@ script:
# see https://github.com/travis-ci/travis-ci/issues/7940
- sudo rm -f /etc/boto.cfg
- pip install -r test-requirements.txt
- [[ $(python --version) == "Python 3.7."* ]] && flake8 || true
- [[ $(python --version) == "Python 3.7."* ]] && black --check . || true
- [[ $(python --version) == "Python 3.7."* ]] && mypy . || true
- '[[ $(python --version) == "Python 3.7."* ]] && flake8 || true'
- '[[ $(python --version) == "Python 3.7."* ]] && black --check . || true'
- '[[ $(python --version) == "Python 3.7."* ]] && mypy . || true'
- coverage run --source collectfast ./runtests.py
- coveralls
matrix:
Expand Down

0 comments on commit cb12fa5

Please sign in to comment.