File tree Expand file tree Collapse file tree 1 file changed +15
-2
lines changed Expand file tree Collapse file tree 1 file changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ NiBabel = "https://github.com/nipy/nibabel/pull/656"
35
35
[project .optional-dependencies ]
36
36
niftiext = [" lxml" ]
37
37
test = [
38
- " pytest" ,
38
+ " pytest >= 6 " ,
39
39
" pytest-cov" ,
40
40
" pytest-env" ,
41
41
" codecov" ,
@@ -63,8 +63,21 @@ __version__ = "{version}"
63
63
fallback_version = " 0.0"
64
64
65
65
[tool .pytest .ini_options ]
66
+ minversion = " 6"
67
+ testpaths = [" nitransforms" ]
68
+ log_cli_level = " INFO"
69
+ xfail_strict = true
66
70
norecursedirs = [" .git" ]
67
- addopts = " -svx --doctest-modules"
71
+ addopts = [
72
+ " -svx" ,
73
+ " -ra" ,
74
+ " --strict-config" ,
75
+ " --strict-markers" ,
76
+ " --doctest-modules" ,
77
+ " --cov=nitransforms" ,
78
+ " --cov-report=xml" ,
79
+ " --cov-config=pyproject.toml" ,
80
+ ]
68
81
doctest_optionflags = " ALLOW_UNICODE NORMALIZE_WHITESPACE ELLIPSIS"
69
82
env = " PYTHONHASHSEED=0"
70
83
filterwarnings = [" ignore::DeprecationWarning" ]
You can’t perform that action at this time.
0 commit comments