Skip to content

Commit b6e752b

Browse files
committed
Revert allowing failures for flake8 checks
This partially reverts commit 4e40786.
1 parent b9dc54d commit b6e752b

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

.travis.yml

-3
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,11 @@ matrix:
1919
# TODO: fix tests
2020
- python: pypy3
2121
- env: TOXENV=pre-commit-pep257
22-
- env: TOXENV=pre-commit-flake8
2322
include:
2423
- python: 3.6
2524
env: TOXENV=pre-commit
2625
- python: 3.6
2726
env: TOXENV=pre-commit-pep257
28-
- python: 3.6
29-
env: TOXENV=pre-commit-flake8
3027
- python: 3.6
3128
env: TOXENV=dist-check
3229

tox.ini

+1-5
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,13 @@ extras =
1515
[testenv:pre-commit]
1616
deps = pre-commit
1717
setenv =
18-
SKIP=pep257,flake8
18+
SKIP=pep257
1919
commands = pre-commit run --all-files {posargs}
2020

2121
[testenv:pre-commit-pep257]
2222
deps = pre-commit
2323
commands = pre-commit run --all-files pep257 {posargs}
2424

25-
[testenv:pre-commit-flake8]
26-
deps = pre-commit
27-
commands = pre-commit run --all-files flake8 {posargs}
28-
2925
[testenv:dist-check]
3026
# ensure that package artifacts are installed as expected
3127
usedevelop = False

0 commit comments

Comments
 (0)