Skip to content

Commit f36b6f3

Browse files
authored
chore: Skip concurrent processing RQ test (#530)
follow-up issue: #529
1 parent 2fa0809 commit f36b6f3

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

tests/integration/test_request_queue.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
from typing import TYPE_CHECKING
44

5+
import pytest
6+
57
from apify import Actor
68

79
if TYPE_CHECKING:
@@ -742,6 +744,9 @@ async def main() -> None:
742744
assert run_result.status == 'SUCCEEDED'
743745

744746

747+
@pytest.mark.skip(
748+
reason='The Apify RQ client is not resilient to concurrent processing, making this test flaky. See issue #529.'
749+
)
745750
async def test_concurrent_processing_simulation(
746751
make_actor: MakeActorFunction,
747752
run_actor: RunActorFunction,

0 commit comments

Comments
 (0)