File tree 2 files changed +22
-1
lines changed
2 files changed +22
-1
lines changed Original file line number Diff line number Diff line change @@ -153,7 +153,7 @@ def get_nipype_gitversion():
153
153
TESTS_REQUIRES = [
154
154
"codecov" ,
155
155
"coverage" ,
156
- "pytest" ,
156
+ "pytest >= 6 " ,
157
157
"pytest-cov" ,
158
158
"pytest-env" ,
159
159
"pytest-timeout" ,
Original file line number Diff line number Diff line change @@ -4,3 +4,24 @@ build-backend = "setuptools.build_meta"
4
4
5
5
[tool .black ]
6
6
skip-string-normalization = true
7
+
8
+ [tool .pytest .ini_options ]
9
+ minversion = " 6"
10
+ testpaths = [" nipype" ]
11
+ log_cli_level = " INFO"
12
+ xfail_strict = true
13
+ norecursedirs = [" .git" ]
14
+ addopts = [
15
+ " -svx" ,
16
+ " -ra" ,
17
+ " --strict-config" ,
18
+ " --strict-markers" ,
19
+ " --doctest-modules" ,
20
+ " --cov=nipype" ,
21
+ " --cov-report=xml" ,
22
+ " --cov-config=pyproject.toml" ,
23
+ ]
24
+ doctest_optionflags = " ALLOW_UNICODE NORMALIZE_WHITESPACE ELLIPSIS"
25
+ env = " PYTHONHASHSEED=0"
26
+ filterwarnings = [" ignore::DeprecationWarning" ]
27
+ junit_family = " xunit2"
You can’t perform that action at this time.
0 commit comments