This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 34fa08ec0c Update tasks order for Gdrive system tests (#40240)
34fa08ec0c is described below
commit 34fa08ec0c45ab722e2e6eee0f3806840b1de467
Author: Maksim <[email protected]>
AuthorDate: Mon Jun 17 01:51:43 2024 -0700
Update tasks order for Gdrive system tests (#40240)
---
tests/system/providers/google/cloud/gcs/example_gdrive_to_gcs.py | 3 ++-
.../system/providers/google/cloud/transfers/example_gdrive_to_local.py | 3 ++-
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/tests/system/providers/google/cloud/gcs/example_gdrive_to_gcs.py
b/tests/system/providers/google/cloud/gcs/example_gdrive_to_gcs.py
index 951f074e81..83b52c8ac3 100644
--- a/tests/system/providers/google/cloud/gcs/example_gdrive_to_gcs.py
+++ b/tests/system/providers/google/cloud/gcs/example_gdrive_to_gcs.py
@@ -149,7 +149,8 @@ with DAG(
)
(
- [create_bucket >> upload_file >> copy_single_file,
create_temp_gcp_connection_task]
+ [create_bucket >> upload_file, create_temp_gcp_connection_task]
+ >> copy_single_file
# TEST BODY
>> detect_file
>> upload_gdrive_to_gcs
diff --git
a/tests/system/providers/google/cloud/transfers/example_gdrive_to_local.py
b/tests/system/providers/google/cloud/transfers/example_gdrive_to_local.py
index a20452cb09..1dc0af50b4 100644
--- a/tests/system/providers/google/cloud/transfers/example_gdrive_to_local.py
+++ b/tests/system/providers/google/cloud/transfers/example_gdrive_to_local.py
@@ -151,7 +151,8 @@ with DAG(
(
# TEST SETUP
- [create_bucket >> upload_file >> copy_single_file,
create_temp_gcp_connection_task]
+ [create_bucket >> upload_file, create_temp_gcp_connection_task]
+ >> copy_single_file
# TEST BODY
>> detect_file
>> download_from_gdrive_to_local