8000 MNT: Apply Repo-Review suggestions by DimitriPapadopoulos · Pull Request #3194 · nipreps/fmriprep · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

MNT: Apply Repo-Review suggestions #3194

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,12 @@ per-file-ignores = [
]

[tool.pytest.ini_options]
minversion = "6"
testpaths = ["fmriprep/tests"]
log_cli_level = "INFO"
xfail_strict = true
norecursedirs = [".git"]
addopts = "-svx --doctest-modules"
addopts = ["-svx", "-ra", "--strict-config", "--strict-markers", "--doctest-modules"]
doctest_optionflags = "ALLOW_UNICODE NORMALIZE_WHITESPACE ELLIPSIS"
env = "PYTHONHASHSEED=0"
filterwarnings = ["ignore::DeprecationWarning"]
Expand Down Expand Up @@ -173,7 +177,7 @@ extend-select = [
"PT",
"Q",
]
extend-ignore = [
ignore = [
"S311", # We are not using random for cryptographic purposes
"ISC001",
"S603",
Expand Down
2 changes: 1 addition & 1 deletion wrapper/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ extend-select = [
"PT",
"Q",
]
extend-ignore = [
ignore = [
"S311", # We are not using random for cryptographic purposes
"ISC001",
]
Expand Down
0