diff options
| author | 2025-02-17 07:41:18 +0100 | |
|---|---|---|
| committer | 2025-02-17 07:41:18 +0100 | |
| commit | 0851c49e02a321c7d688b6542a90ff8a71f498c8 (patch) | |
| tree | 67d787608695391e5edc2eb245b3943302ba1734 /pyproject.toml | |
| parent | 4e4bfe759938fe0e17da559edfeee7b73969daf3 (diff) | |
Merging upstream version 2.1.2~dev0+20230529.
Signed-off-by: Daniel Baumann <daniel@debian.org>
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml index 67ebe0a..0449619 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,3 +9,22 @@ skip-string-normalization = true [tool.isort] profile = "black" + +[tool.pytest.ini_options] +# Hide logged warnings and errors in test output. +log_cli_level = "CRITICAL" +addopts = "--basetemp=_pytest_temp" +markers = [ + "todo: Tests that are yet to be written", + "gtkui: Tests for GTK code", + "security: Security related tests", + "slow: Tests that are particularly slow", + "internet: Tests that require internet connectivity", +] +filterwarnings = [ + "ignore::DeprecationWarning:gi", + "ignore::DeprecationWarning:twisted.internet.gireactor", + "ignore:twisted.web.resource.*:DeprecationWarning", + "ignore:Using readBody.*:DeprecationWarning", + "ignore:resume_data is deprecated.*:DeprecationWarning:deluge.core.alertmanager", +] |
