Add skipif IS_WINDOWS for test_patterngen_seeds
#1456
+4
−0
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.
Skip
test_patterngen_seedson Windows to restore CI performanceProblem
The
test_patterngen_seedstest runs extremely slowly on Windows platforms (up to ~945 seconds / ~15 minutes) compared to Linux (~12-15 seconds), significantly slowing down our CI and severely impeding local testing. See issue #1455 for detailed performance numbers.Solution
Add a
@pytest.mark.skipifdecorator to skip this test on Windows platforms. This restores CI and local testing speed while we work on investigating and fixing the root cause.Changes
test_patterngen_seedsincuda_core/tests/test_helpers.pycuda_core/tests/test_helpers.py::test_patterngen_seedson Windows #1455 for tracking