We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 52d1266 + 6a4dba8 commit 5c3665aCopy full SHA for 5c3665a
setup.cfg
@@ -92,3 +92,23 @@ versionfile_source = niworkflows/_version.py
92
versionfile_build = niworkflows/_version.py
93
tag_prefix =
94
parentdir_prefix =
95
+
96
+[flake8]
97
+max-line-length = 99
98
+doctests = False
99
+exclude=*build/
100
+per-file-ignores =
101
+ **/__init__.py : F401
102
+ docs/conf.py : E265
103
104
+[pytest]
105
+norecursedirs = .git
106
+addopts = -svx --doctest-modules
107
+doctest_optionflags = ALLOW_UNICODE NORMALIZE_WHITESPACE
108
+env =
109
+ PYTHONHASHSEED=0
110
+filterwarnings =
111
+ ignore::DeprecationWarning
112
113
+[coverage:run]
114
+branch = True
tox.ini
0 commit comments