We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2fa0809 commit f36b6f3Copy full SHA for f36b6f3
tests/integration/test_request_queue.py
@@ -2,6 +2,8 @@
2
3
from typing import TYPE_CHECKING
4
5
+import pytest
6
+
7
from apify import Actor
8
9
if TYPE_CHECKING:
@@ -742,6 +744,9 @@ async def main() -> None:
742
744
assert run_result.status == 'SUCCEEDED'
743
745
746
747
+@pytest.mark.skip(
748
+ reason='The Apify RQ client is not resilient to concurrent processing, making this test flaky. See issue #529.'
749
+)
750
async def test_concurrent_processing_simulation(
751
make_actor: MakeActorFunction,
752
run_actor: RunActorFunction,
0 commit comments