Skip to content

Commit 59f5152

Browse files
authored
chore: skip failing test (#651)
follow-up issue: #650
1 parent 0c32f29 commit 59f5152

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

tests/integration/test_actor_lifecycle.py

Lines changed: 3 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:
@@ -119,6 +121,7 @@ async def main() -> None:
119121
assert run_result.status == 'FAILED'
120122

121123

124+
@pytest.mark.skip(reason='Skipped due to known instability, see issue #650.')
122125
async def test_actor_with_crawler_reboot(make_actor: MakeActorFunction, run_actor: RunActorFunction) -> None:
123126
"""Test that crawler in actor works as expected after reboot.
124127

tests/integration/test_actor_log.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
# TODO: What to do with the `browserforge` output?
1414
# https://github.com/apify/apify-sdk-python/issues/423
15-
@pytest.mark.skip
15+
@pytest.mark.skip(reason='Skipped due to known instability, see issue #423.')
1616
async def test_actor_logging(
1717
make_actor: MakeActorFunction,
1818
run_actor: RunActorFunction,

0 commit comments

Comments
 (0)