Skip to content

Commit 9bd83af

Browse files
committed
More tests mccaby / bugbearer
1 parent c027891 commit 9bd83af

File tree

3 files changed

+48
-3
lines changed

3 files changed

+48
-3
lines changed

Pipfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,5 @@ pytest = "*"
1616
"pytest-flake8" = "*"
1717
numpy = "*"
1818
"python-coveralls" = "*"
19+
flake8-bugbear = "*"
20+
pytest-mccabe = "*"

Pipfile.lock

Lines changed: 42 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

setup.cfg

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
[flake8]
2-
max-line-length = 159
2+
max-line-length = 120
3+
max-complexity = 10
4+
select = B,B901,B902,B903,C,E,F,I,N,W
35
import-order-style = google
46

57
[tool:pytest]
6-
addopts = --cov=plotille --cov-report=term-missing --flake8 -v
8+
addopts = --cov=plotille --cov-report=term-missing --mccabe --flake8 -v
79

810
[bdist_wheel]
911
universal = 1

0 commit comments

Comments
 (0)