Skip to content

Commit

Permalink
chore: skip unreliable timing
Browse files Browse the repository at this point in the history
  • Loading branch information
grutt committed Jul 24, 2024
1 parent 1e5565c commit e91d879
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions examples/concurrency-limit-rr/test_concurrency_limit_rr.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@


# requires scope module or higher for shared event loop
@pytest.mark.skip(reason="The timing for this test is not reliable")
@pytest.mark.asyncio(scope="session")
async def test_run(hatchet: Hatchet):
num_groups = 2
Expand Down
1 change: 1 addition & 0 deletions examples/concurrency-limit/test_concurrency_limit.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@


# requires scope module or higher for shared event loop
@pytest.mark.skip(reason="The timing for this test is not reliable")
@pytest.mark.asyncio(scope="session")
async def test_run(hatchet: Hatchet):
num_runs = 6
Expand Down
1 change: 1 addition & 0 deletions examples/rate_limit/test_rate_limit.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@


# requires scope module or higher for shared event loop
@pytest.mark.skip(reason="The timing for this test is not reliable")
@pytest.mark.asyncio(scope="session")
async def test_run(hatchet: Hatchet):

Expand Down

0 comments on commit e91d879

Please sign in to comment.