File tree Expand file tree Collapse file tree 3 files changed +13
-19
lines changed
Expand file tree Collapse file tree 3 files changed +13
-19
lines changed Original file line number Diff line number Diff line change 11[tool .black ]
22line-length = 180
3+
4+ [tool .pytest .ini_options ]
5+ minversion = " 6.0"
6+ testpaths = [" src" , " tests" ]
7+ python_files = [
8+ " test_*.py" ,
9+ " *_test.py" ,
10+ " tests.py"
11+ ]
12+ addopts = " -ra --strict --doctest-glob=*.rst --tb=short"
13+ doctest_optionflags = " NORMALIZE_WHITESPACE IGNORE_EXCEPTION_DETAIL ALLOW_UNICODE ALLOW_BYTES"
14+ filterwarnings = " ignore::DeprecationWarning"
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ check-manifest>=0.36
77flake8
88autopep8
99pylint
10- pytest >= 4.6
10+ pytest >= 6.0
1111pytest_mock
1212pytest-cov
1313sybil
Original file line number Diff line number Diff line change @@ -17,24 +17,6 @@ exclude =
1717convention = numpy
1818add-ignore = D100
1919
20- [tool:pytest]
21- testpaths = src tests
22- norecursedirs =
23- migrations
24-
25- python_files =
26- test_*.py
27- *_test.py
28- tests.py
29- addopts =
30- -ra
31- --strict
32- --doctest-glob =\*.rst
33- --tb =short
34- doctest_optionflags = NORMALIZE_WHITESPACE IGNORE_EXCEPTION_DETAIL ALLOW_UNICODE ALLOW_BYTES
35- filterwarnings =
36- ignore::DeprecationWarning
37-
3820[isort]
3921force_single_line = True
4022line_length = 180
You can’t perform that action at this time.
0 commit comments