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 010252c commit 8f4565fCopy full SHA for 8f4565f
.travis.yml
@@ -11,10 +11,10 @@ install:
11
- pip install -r dev-requirements.txt
12
- pip install sphinx sphinx_rtd_theme
13
# black isn't installing on pypy3, so just skip it
14
- - '[ "$TRAVIS_PYTHON_VERSION" != "pypy3" ] && pip install black'
+ - 'if [ "$TRAVIS_PYTHON_VERSION" != "pypy3" ]; then pip install black; fi'
15
script:
16
- flake8
17
- - '[ "$TRAVIS_PYTHON_VERSION" != "pypy3" ] && black --check .'
+ - 'if [ "$TRAVIS_PYTHON_VERSION" != "pypy3" ]; then black --check .; fi'
18
- pytest
19
- make doc
20
0 commit comments