We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a235be commit 311e314Copy full SHA for 311e314
airbyte_cdk/test/standard_tests/docker_base.py
@@ -287,7 +287,10 @@ def test_docker_image_build_and_read(
287
scenario.with_temp_config_file(
288
connector_root=connector_root,
289
) as temp_config_file,
290
- tempfile.TemporaryDirectory(delete=False) as temp_dir_str,
+ tempfile.TemporaryDirectory(
291
+ prefix=f"{connector_name}-test",
292
+ delete=False,
293
+ ) as temp_dir_str,
294
):
295
temp_dir = Path(temp_dir_str)
296
discover_result = run_docker_command(
0 commit comments