Skip to content
Draft
Changes from 1 commit
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
2 changes: 2 additions & 0 deletions tests/extra/test_job_management.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,8 @@ def sleep_mock():
yield sleep


@pytest.mark.filterwarnings("default:.*`output_file` argument is deprecated.*:DeprecationWarning")
@pytest.mark.filterwarnings("error")
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Apparently it is also possible to set these markers at module level, (instead of only on this test class), with the pytestmark module global var according to https://docs.pytest.org/en/stable/how-to/capture-warnings.html#pytest-mark-filterwarnings

class TestMultiBackendJobManager:

@pytest.fixture
Expand Down
Loading