Skip to content

Commit 288fa44

Browse files
authored
Merge pull request #83 from PyCQA/fix_unittests
Fix failing unittests
2 parents b7072b5 + 4d1ca7a commit 288fa44

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.flake8

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Keep in sync with setup.cfg which is used for source packages.
33

44
[flake8]
5-
ignore = E302, E501
5+
ignore = E203, E302, E501
66
max-line-length = 88
77
max-complexity = 12
88
select = B,C,E,F,W,B9

.travis.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,17 @@ dist: xenial
66
matrix:
77
fast_finish: true
88
include:
9-
- python: 3.5
109
- python: 3.6
1110
- python: 3.7
1211
- python: 3.8-dev
13-
env: PYTHON_VER=py38
12+
- python: nightly
1413
allow_failures:
15-
- env: PYTHON_VER=py38
14+
- python: 3.8-dev
15+
- python: nightly
1616

1717
install:
18-
- pip install black
19-
- pip install -e .
18+
- pip install --upgrade pip setuptools black
19+
- pip install .
2020

2121
script:
2222
- python setup.py test && find . -type f -name '*.py' | xargs black --check

tests/test_bugbear.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def test_b006_b008(self):
8787
B006(26, 19),
8888
B006(30, 31),
8989
B008(39, 38),
90-
B006(53, 32),
90+
B006(55, 32),
9191
),
9292
)
9393

0 commit comments

Comments
 (0)