mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-19 21:03:14 -07:00
commit
3a95b433f3
1 changed files with 8 additions and 6 deletions
14
tox.ini
14
tox.ini
|
@ -33,12 +33,6 @@ commands =
|
||||||
max-line-length = 79
|
max-line-length = 79
|
||||||
verbose = 2
|
verbose = 2
|
||||||
statistics = True
|
statistics = True
|
||||||
select =
|
|
||||||
; -- flake8-bugbear --
|
|
||||||
; B902 Invalid first argument used for instance method.
|
|
||||||
; B903 Data class should either be immutable or use __slots__ to save memory.
|
|
||||||
B902, B903
|
|
||||||
|
|
||||||
ignore =
|
ignore =
|
||||||
; -- flake8 --
|
; -- flake8 --
|
||||||
; E501 line too long
|
; E501 line too long
|
||||||
|
@ -78,7 +72,15 @@ deps =
|
||||||
flake8-quotes
|
flake8-quotes
|
||||||
skip_install = true
|
skip_install = true
|
||||||
commands =
|
commands =
|
||||||
|
; ** PRIMARY TESTS **
|
||||||
|
; Run flake8 tests (with plugins) using default test selections
|
||||||
flake8 core tests setup.py
|
flake8 core tests setup.py
|
||||||
|
; ** SELECTIVE TESTS **
|
||||||
|
; Run flake8 tests (with plugins) for specific optional codes defined below
|
||||||
|
; -- flake8-bugbear --
|
||||||
|
; B902 Invalid first argument used for instance method.
|
||||||
|
; B903 Data class should be immutable or use __slots__ to save memory.
|
||||||
|
flake8 core tests setup.py --select=B902,B903
|
||||||
|
|
||||||
[coverage:run]
|
[coverage:run]
|
||||||
omit =
|
omit =
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue