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 dbbb865 commit 38627abCopy full SHA for 38627ab
.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
+ - '[ "$TRAVIS_PYTHON_VERSION" != "pypy3"] && pip install black'
15
script:
16
- flake8
17
- - [ "$TRAVIS_PYTHON_VERSION" != "pypy3"] && black --check .
+ - '[ "$TRAVIS_PYTHON_VERSION" != "pypy3"] && black --check .'
18
- pytest
19
- make doc
20
0 commit comments