Skip to content

Commit 18b2974

Browse files
committed
tweek
1 parent 0835139 commit 18b2974

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ install:
1414
- pip install tox
1515
- pip install tox-travis
1616
- pip install isort
17-
- test "$TRAVIS_PYTHON_VERSION" != "pypy3" && pip install black
17+
- if [[ "$TRAVIS_PYTHON_VERSION" != "pypy3" ]]; then pip install black; fi
1818
script:
1919
- isort --check --recursive src tests
20-
- test "$TRAVIS_PYTHON_VERSION" != "pypy3" && black --check src tests
20+
- if [[ "$TRAVIS_PYTHON_VERSION" != "pypy3" ]]; then black --check src tests; fi
2121
- codecov --version
2222
- tox
2323
after_success:

0 commit comments

Comments
 (0)