@@ -122,7 +122,6 @@ async def test_abort_actor_run(apify_client_async_patcher: ApifyClientAsyncPatch
122122# NOTE: The following methods are properly tested using integrations tests.
123123
124124
125- @pytest .mark .skip (reason = 'There are issues with log propagation to caplog, see issue #462.' )
126125async def test_metamorph_fails_locally (caplog : pytest .LogCaptureFixture ) -> None :
127126 caplog .set_level ('WARNING' )
128127 async with Actor :
@@ -133,7 +132,6 @@ async def test_metamorph_fails_locally(caplog: pytest.LogCaptureFixture) -> None
133132 assert 'Actor.metamorph() is only supported when running on the Apify platform.' in caplog .records [0 ].message
134133
135134
136- @pytest .mark .skip (reason = 'There are issues with log propagation to caplog, see issue #462.' )
137135async def test_reboot_fails_locally (caplog : pytest .LogCaptureFixture ) -> None :
138136 caplog .set_level ('WARNING' )
139137 async with Actor :
@@ -144,7 +142,6 @@ async def test_reboot_fails_locally(caplog: pytest.LogCaptureFixture) -> None:
144142 assert 'Actor.reboot() is only supported when running on the Apify platform.' in caplog .records [0 ].message
145143
146144
147- @pytest .mark .skip (reason = 'There are issues with log propagation to caplog, see issue #462.' )
148145async def test_add_webhook_fails_locally (caplog : pytest .LogCaptureFixture ) -> None :
149146 caplog .set_level ('WARNING' )
150147 async with Actor :
@@ -157,7 +154,6 @@ async def test_add_webhook_fails_locally(caplog: pytest.LogCaptureFixture) -> No
157154 assert 'Actor.add_webhook() is only supported when running on the Apify platform.' in caplog .records [0 ].message
158155
159156
160- @pytest .mark .skip (reason = 'There are issues with log propagation to caplog, see issue #462.' )
161157async def test_set_status_message_locally (caplog : pytest .LogCaptureFixture ) -> None :
162158 caplog .set_level ('INFO' )
163159 async with Actor :
@@ -169,7 +165,6 @@ async def test_set_status_message_locally(caplog: pytest.LogCaptureFixture) -> N
169165 assert '[Status message]: test-status-message' in matching_records [0 ].message
170166
171167
172- @pytest .mark .skip (reason = 'There are issues with log propagation to caplog, see issue #462.' )
173168async def test_set_terminal_status_message_locally (caplog : pytest .LogCaptureFixture ) -> None :
174169 caplog .set_level ('INFO' )
175170 async with Actor :
0 commit comments