[Test] Suppress stock pytest-timeout to avoid conflict with pytest_hardtle#557
Merged
hughperkins merged 2 commits intomainfrom Apr 24, 2026
Merged
[Test] Suppress stock pytest-timeout to avoid conflict with pytest_hardtle#557hughperkins merged 2 commits intomainfrom
hughperkins merged 2 commits intomainfrom
Conversation
…rdtle The self-hosted AMD GPU runner has pytest-timeout installed in its Python tool cache. When pytest_hardtle (our CFFI-based hard timeout plugin) tries to register the same hooks, pytest raises a ValueError. Adding `-p no:timeout` before `-p pytest_hardtle` prevents the stock plugin from loading.
237bc4a to
2915739
Compare
Explain why we suppress stock pytest-timeout (hook conflict) and why we use pytest_hardtle (CFFI native signal handler kills GIL-held GPU hangs).
b8bacf8 to
f85f00b
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
-p no:timeoutbefore-p pytest_hardtleinrun_tests.pyto prevent stockpytest-timeoutfrom loading when it's present in the Python environment.ValueError: Hook 'pytest_timeout_cancel_timer' is already registeredcrash seen on the AMD GPU runner, wherepytest-timeoutwas left over in the tool cache.Test plan
ValueError)Made with Cursor