Some checks failed
Code Quality Main / code-quality (push) Has been cancelled
Release Drafter / update_release_draft (push) Has been cancelled
Tests / run_tests_ubuntu (ubuntu-latest, 3.10) (push) Has been cancelled
Tests / run_tests_ubuntu (ubuntu-latest, 3.8) (push) Has been cancelled
Tests / run_tests_ubuntu (ubuntu-latest, 3.9) (push) Has been cancelled
Tests / run_tests_macos (macos-latest, 3.10) (push) Has been cancelled
Tests / run_tests_macos (macos-latest, 3.8) (push) Has been cancelled
Tests / run_tests_macos (macos-latest, 3.9) (push) Has been cancelled
Tests / run_tests_windows (windows-latest, 3.10) (push) Has been cancelled
Tests / run_tests_windows (windows-latest, 3.8) (push) Has been cancelled
Tests / run_tests_windows (windows-latest, 3.9) (push) Has been cancelled
Tests / code-coverage (push) Has been cancelled
26 lines
461 B
TOML
26 lines
461 B
TOML
[tool.pytest.ini_options]
|
|
addopts = [
|
|
"--color=yes",
|
|
"--durations=0",
|
|
"--strict-markers",
|
|
"--doctest-modules",
|
|
]
|
|
filterwarnings = [
|
|
"ignore::DeprecationWarning",
|
|
"ignore::UserWarning",
|
|
]
|
|
log_cli = "True"
|
|
markers = [
|
|
"slow: slow tests",
|
|
]
|
|
minversion = "6.0"
|
|
testpaths = "tests/"
|
|
|
|
[tool.coverage.report]
|
|
exclude_lines = [
|
|
"pragma: nocover",
|
|
"raise NotImplementedError",
|
|
"raise NotImplementedError()",
|
|
"if __name__ == .__main__.:",
|
|
]
|