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 b0a8ab5 commit dbbb865Copy full SHA for dbbb865
.travis.yml
@@ -10,10 +10,11 @@ install:
10
- pip 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
15
script:
16
- flake8
- - env
- - black --check .
17
+ - [ "$TRAVIS_PYTHON_VERSION" != "pypy3"] && black --check .
18
- pytest
19
- make doc
20
dev-requirements.txt
@@ -1,4 +1,3 @@
1
-black
2
testtools
3
flake8
4
pytest
0 commit comments