From e91d879b3065f64b7f340e192792aea3c3c25fa0 Mon Sep 17 00:00:00 2001 From: gabriel ruttner Date: Wed, 24 Jul 2024 10:52:36 -0400 Subject: [PATCH] chore: skip unreliable timing --- examples/concurrency-limit-rr/test_concurrency_limit_rr.py | 1 + examples/concurrency-limit/test_concurrency_limit.py | 1 + examples/rate_limit/test_rate_limit.py | 1 + 3 files changed, 3 insertions(+) diff --git a/examples/concurrency-limit-rr/test_concurrency_limit_rr.py b/examples/concurrency-limit-rr/test_concurrency_limit_rr.py index b9cab0bc..e135d10c 100644 --- a/examples/concurrency-limit-rr/test_concurrency_limit_rr.py +++ b/examples/concurrency-limit-rr/test_concurrency_limit_rr.py @@ -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 diff --git a/examples/concurrency-limit/test_concurrency_limit.py b/examples/concurrency-limit/test_concurrency_limit.py index f1b35c38..ba89f21c 100644 --- a/examples/concurrency-limit/test_concurrency_limit.py +++ b/examples/concurrency-limit/test_concurrency_limit.py @@ -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 diff --git a/examples/rate_limit/test_rate_limit.py b/examples/rate_limit/test_rate_limit.py index ca3d3f96..6f23da01 100644 --- a/examples/rate_limit/test_rate_limit.py +++ b/examples/rate_limit/test_rate_limit.py @@ -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):