diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-25 02:59:47 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-25 02:59:47 +0000 |
commit | 03a1bd448be99d872d663a57a1cf4492882e090d (patch) | |
tree | c3d23691aa4dfdba89856bde05707a9a8e16abab /tests/plugin_tests/conftest.py | |
parent | Adding upstream version 0.1.28. (diff) | |
download | debputy-03a1bd448be99d872d663a57a1cf4492882e090d.tar.xz debputy-03a1bd448be99d872d663a57a1cf4492882e090d.zip |
Adding upstream version 0.1.29.upstream/0.1.29
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/plugin_tests/conftest.py')
-rw-r--r-- | tests/plugin_tests/conftest.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/plugin_tests/conftest.py b/tests/plugin_tests/conftest.py index f2a8aea..6b28755 100644 --- a/tests/plugin_tests/conftest.py +++ b/tests/plugin_tests/conftest.py @@ -1,10 +1,11 @@ import os +from typing import Iterator import pytest @pytest.fixture(autouse=True) -def workaround_debputys_own_test_suite() -> None: +def workaround_debputys_own_test_suite() -> Iterator[None]: # This fixture is only required as long as the tests are run inside `debputy`'s # own test suite. If you copy out a plugin + tests, you should *not* need this # fixture. |