Skip to content

Commit 4f23cd8

Browse files
committed
longer timeout, remove skips
1 parent 4ad220f commit 4f23cd8

File tree

3 files changed

+1
-13
lines changed

3 files changed

+1
-13
lines changed

tests/test_background_events.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,14 @@ def background_events_url() -> str:
1414
return docs.events.background_events.path
1515

1616

17-
@pytest.mark.skipif(
18-
os.environ.get("GITHUB_ACTIONS") is not None, reason="Consistently fails in CI"
19-
)
2017
def test_background_events(
2118
reflex_web_app: AppHarness,
2219
page: Page,
2320
background_events_url: str,
2421
):
2522
assert reflex_web_app.frontend_url is not None
2623

27-
page.goto(reflex_web_app.frontend_url + background_events_url)
24+
page.goto(reflex_web_app.frontend_url + background_events_url, timeout=60000)
2825
expect(page).to_have_url(re.compile(background_events_url))
2926

3027
start_button = page.get_by_role("button", name="Start", exact=True)

tests/test_chaining_event.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,6 @@ def chaining_event_url() -> str:
1515
return docs.events.chaining_events.path
1616

1717

18-
@pytest.mark.skipif(
19-
os.environ.get("GITHUB_ACTIONS") is not None, reason="Consistently fails in CI"
20-
)
2118
def test_handler_from_handler(
2219
reflex_web_app: AppHarness,
2320
page: Page,
@@ -48,9 +45,6 @@ def test_handler_from_handler(
4845
expect(chain_heading).to_have_text("10", timeout=10000)
4946

5047

51-
@pytest.mark.skipif(
52-
os.environ.get("GITHUB_ACTIONS") is not None, reason="Consistently fails in CI"
53-
)
5448
def test_collatz(reflex_web_app: AppHarness, page: Page, chaining_event_url):
5549
assert reflex_web_app.frontend_url is not None
5650

tests/test_computed_vars.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@ def computed_vars_url() -> str:
1414
return docs.vars.computed_vars.path
1515

1616

17-
@pytest.mark.skipif(
18-
os.environ.get("GITHUB_ACTIONS") is not None, reason="Consistently fails in CI"
19-
)
2017
def test_computed_vars(
2118
reflex_web_app: AppHarness,
2219
page: Page,

0 commit comments

Comments
 (0)