samples-python icon indicating copy to clipboard operation
samples-python copied to clipboard

[Bug] Infrequent polling test not properly skipped during time skipping

Open cretz opened this issue 8 months ago • 0 comments

Describe the bug

#152 added test_infrequent_polling_workflow, but put

    if not env.supports_time_skipping:
        pytest.skip("Too slow to test with time-skipping disabled")

when likely meant

    if env.supports_time_skipping:
        pytest.skip("Too slow to test with time-skipping disabled")

cretz avatar Apr 30 '25 13:04 cretz