@@ -122,7 +122,6 @@ async def test_abort_actor_run(apify_client_async_patcher: ApifyClientAsyncPatch
122
122
# NOTE: The following methods are properly tested using integrations tests.
123
123
124
124
125
- @pytest .mark .skip (reason = 'There are issues with log propagation to caplog, see issue #462.' )
126
125
async def test_metamorph_fails_locally (caplog : pytest .LogCaptureFixture ) -> None :
127
126
caplog .set_level ('WARNING' )
128
127
async with Actor :
@@ -133,7 +132,6 @@ async def test_metamorph_fails_locally(caplog: pytest.LogCaptureFixture) -> None
133
132
assert 'Actor.metamorph() is only supported when running on the Apify platform.' in caplog .records [0 ].message
134
133
135
134
136
- @pytest .mark .skip (reason = 'There are issues with log propagation to caplog, see issue #462.' )
137
135
async def test_reboot_fails_locally (caplog : pytest .LogCaptureFixture ) -> None :
138
136
caplog .set_level ('WARNING' )
139
137
async with Actor :
@@ -144,7 +142,6 @@ async def test_reboot_fails_locally(caplog: pytest.LogCaptureFixture) -> None:
144
142
assert 'Actor.reboot() is only supported when running on the Apify platform.' in caplog .records [0 ].message
145
143
146
144
147
- @pytest .mark .skip (reason = 'There are issues with log propagation to caplog, see issue #462.' )
148
145
async def test_add_webhook_fails_locally (caplog : pytest .LogCaptureFixture ) -> None :
149
146
caplog .set_level ('WARNING' )
150
147
async with Actor :
@@ -157,7 +154,6 @@ async def test_add_webhook_fails_locally(caplog: pytest.LogCaptureFixture) -> No
157
154
assert 'Actor.add_webhook() is only supported when running on the Apify platform.' in caplog .records [0 ].message
158
155
159
156
160
- @pytest .mark .skip (reason = 'There are issues with log propagation to caplog, see issue #462.' )
161
157
async def test_set_status_message_locally (caplog : pytest .LogCaptureFixture ) -> None :
162
158
caplog .set_level ('INFO' )
163
159
async with Actor :
@@ -169,7 +165,6 @@ async def test_set_status_message_locally(caplog: pytest.LogCaptureFixture) -> N
169
165
assert '[Status message]: test-status-message' in matching_records [0 ].message
170
166
171
167
172
- @pytest .mark .skip (reason = 'There are issues with log propagation to caplog, see issue #462.' )
173
168
async def test_set_terminal_status_message_locally (caplog : pytest .LogCaptureFixture ) -> None :
174
169
caplog .set_level ('INFO' )
175
170
async with Actor :
0 commit comments