Skip to content

Properly skip infrequent polling test on time-skipping server #186

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

cretz
Copy link
Member

@cretz cretz commented May 12, 2025

What was changed

Properly skip infrequent polling test on time-skipping server

Checklist

  1. Closes [Bug] Infrequent polling test not properly skipped during time skipping #184

@cretz cretz requested a review from a team as a code owner May 12, 2025 20:35
@@ -10,7 +10,7 @@


async def test_infrequent_polling_workflow(client: Client, env: WorkflowEnvironment):
if not env.supports_time_skipping:
if env.supports_time_skipping:
pytest.skip("Too slow to test with time-skipping disabled")
Copy link
Contributor

Choose a reason for hiding this comment

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

The boolean condition and the message don't seem to jointly make sense any longer?

Copy link
Member Author

Choose a reason for hiding this comment

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

Hrmm, maybe I misunderstood the situation here and we are wanting to only run this test with time skipping and it's still too slow even with time skipping. Will look.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

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