From 92a7a87fd894d290b5840889ea0576057f2b591f Mon Sep 17 00:00:00 2001 From: Vlada Dusek Date: Wed, 29 Oct 2025 13:01:37 +0100 Subject: [PATCH 1/2] chore: skip failing test --- tests/integration/test_actor_lifecycle.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/integration/test_actor_lifecycle.py b/tests/integration/test_actor_lifecycle.py index 649dc1d1..91c29fb2 100644 --- a/tests/integration/test_actor_lifecycle.py +++ b/tests/integration/test_actor_lifecycle.py @@ -2,6 +2,8 @@ from typing import TYPE_CHECKING +import pytest + from apify import Actor if TYPE_CHECKING: @@ -119,6 +121,7 @@ async def main() -> None: assert run_result.status == 'FAILED' +@pytest.mark.skip(reason='Failing, needs investigation, see #650.') async def test_actor_with_crawler_reboot(make_actor: MakeActorFunction, run_actor: RunActorFunction) -> None: """Test that crawler in actor works as expected after reboot. From 2e42daa712dc67a92988332af3bf1bd966f68b6a Mon Sep 17 00:00:00 2001 From: Vlada Dusek Date: Wed, 29 Oct 2025 13:23:53 +0100 Subject: [PATCH 2/2] better skip messages --- tests/integration/test_actor_lifecycle.py | 2 +- tests/integration/test_actor_log.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/integration/test_actor_lifecycle.py b/tests/integration/test_actor_lifecycle.py index 91c29fb2..eda6a1cb 100644 --- a/tests/integration/test_actor_lifecycle.py +++ b/tests/integration/test_actor_lifecycle.py @@ -121,7 +121,7 @@ async def main() -> None: assert run_result.status == 'FAILED' -@pytest.mark.skip(reason='Failing, needs investigation, see #650.') +@pytest.mark.skip(reason='Skipped due to known instability, see issue #650.') async def test_actor_with_crawler_reboot(make_actor: MakeActorFunction, run_actor: RunActorFunction) -> None: """Test that crawler in actor works as expected after reboot. diff --git a/tests/integration/test_actor_log.py b/tests/integration/test_actor_log.py index c3596841..bd9ab77d 100644 --- a/tests/integration/test_actor_log.py +++ b/tests/integration/test_actor_log.py @@ -12,7 +12,7 @@ # TODO: What to do with the `browserforge` output? # https://github.com/apify/apify-sdk-python/issues/423 -@pytest.mark.skip +@pytest.mark.skip(reason='Skipped due to known instability, see issue #423.') async def test_actor_logging( make_actor: MakeActorFunction, run_actor: RunActorFunction,