We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0835139 commit 18b2974Copy full SHA for 18b2974
.travis.yml
@@ -14,10 +14,10 @@ install:
14
- pip install tox
15
- pip install tox-travis
16
- pip install isort
17
- - test "$TRAVIS_PYTHON_VERSION" != "pypy3" && pip install black
+ - if [[ "$TRAVIS_PYTHON_VERSION" != "pypy3" ]]; then pip install black; fi
18
script:
19
- isort --check --recursive src tests
20
- - test "$TRAVIS_PYTHON_VERSION" != "pypy3" && black --check src tests
+ - if [[ "$TRAVIS_PYTHON_VERSION" != "pypy3" ]]; then black --check src tests; fi
21
- codecov --version
22
- tox
23
after_success:
0 commit comments