Skip to content

Commit ce3e726

Browse files
committed
tests: Fix failing integration tests
1 parent ea0a3c0 commit ce3e726

File tree

3 files changed

+0
-10
lines changed

3 files changed

+0
-10
lines changed

tests/integration/actor/test_actor_api_helpers.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
import json
55
from typing import TYPE_CHECKING
66

7-
import pytest
8-
97
from crawlee._utils.crypto import crypto_random_object_id
108

119
from .._utils import generate_unique_resource_name
@@ -197,7 +195,6 @@ async def main_outer() -> None:
197195
assert inner_output_record['value'] == f'{test_value}_XXX_{test_value}'
198196

199197

200-
@pytest.mark.skip(reason='Known failing test, pending investigation.')
201198
async def test_actor_calls_task(
202199
make_actor: MakeActorFunction,
203200
run_actor: RunActorFunction,
@@ -251,7 +248,6 @@ async def main_outer() -> None:
251248
await apify_client_async.task(task['id']).delete()
252249

253250

254-
@pytest.mark.skip(reason='Known failing test, pending investigation.')
255251
async def test_actor_aborts_another_actor_run(
256252
make_actor: MakeActorFunction,
257253
run_actor: RunActorFunction,

tests/integration/actor/test_actor_log.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,12 @@
22

33
from typing import TYPE_CHECKING
44

5-
import pytest
6-
75
from apify import Actor, __version__
86

97
if TYPE_CHECKING:
108
from .conftest import MakeActorFunction, RunActorFunction
119

1210

13-
@pytest.mark.skip(reason='Known failing test, pending investigation.')
1411
async def test_actor_logging(
1512
make_actor: MakeActorFunction,
1613
run_actor: RunActorFunction,

tests/integration/actor/test_actor_scrapy.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,10 @@
33
from pathlib import Path
44
from typing import TYPE_CHECKING
55

6-
import pytest
7-
86
if TYPE_CHECKING:
97
from .conftest import MakeActorFunction, RunActorFunction
108

119

12-
@pytest.mark.skip(reason='Known failing test, pending investigation.')
1310
async def test_actor_scrapy_title_spider(
1411
make_actor: MakeActorFunction,
1512
run_actor: RunActorFunction,

0 commit comments

Comments
 (0)