File tree 1 file changed +19
-7
lines changed
1 file changed +19
-7
lines changed Original file line number Diff line number Diff line change @@ -81,8 +81,9 @@ style =
81
81
flake8 >= 3.7.0
82
82
test =
83
83
pytest >= 4.4
84
- pytest-xdist >= 1.28
85
- pytest-cov
84
+ pytest-xdist >= 2.0
85
+ pytest-cov >= 2.10.1
86
+ pytest-env
86
87
coverage
87
88
tests =
88
89
%(test)s
@@ -111,16 +112,27 @@ max-line-length = 99
111
112
doctests = False
112
113
ignore =
113
114
W503
115
+ E231
116
+ E203
114
117
exclude =
115
118
*build/
116
- */.afq/*
117
- docs/
119
+ docs/sphinxext/
120
+ docs/tools/
121
+ per-file-ignores =
122
+ **/__init__.py : F401
123
+ docs/conf.py : E265
118
124
119
125
[tool:pytest]
120
- norecursedirs = .* _*
121
- addopts = -vx --doctest-modules
122
- doctest_optionflags = ALLOW_UNICODE NORMALIZE_WHITESPACE IGNORE_EXCEPTION_DETAIL
126
+ norecursedirs = .git
127
+ addopts = -vsx --doctest-modules
128
+ doctest_optionflags = ALLOW_UNICODE NORMALIZE_WHITESPACE NUMBER
123
129
env =
124
130
PYTHONHASHSEED =0
125
131
filterwarnings =
126
132
ignore::DeprecationWarning
133
+ ignore::PendingDeprecationWarning
134
+ ignore:cmp not installed:UserWarning
135
+ ignore:This has not been fully tested:UserWarning
136
+
137
+ [coverage:run]
138
+ concurrency = multiprocessing
You can’t perform that action at this time.
0 commit comments