VladaZakharova commented on code in PR #32487:
URL: https://github.com/apache/airflow/pull/32487#discussion_r1266596003
##########
tests/system/providers/google/cloud/dataflow/example_dataflow_sql.py:
##########
@@ -24,7 +24,15 @@
from datetime import datetime
from airflow import models
+from airflow.providers.google.cloud.operators.bigquery import (
+ BigQueryCreateEmptyDatasetOperator,
+ BigQueryCreateEmptyTableOperator,
+ BigQueryDeleteDatasetOperator,
+)
from airflow.providers.google.cloud.operators.dataflow import
DataflowStartSqlJobOperator
+from airflow.utils.trigger_rule import TriggerRule
+
+DAG_ID = "example_gcp_dataflow_sql"
GCP_PROJECT_ID = os.environ.get("GCP_PROJECT_ID", "example-project")
Review Comment:
```suggestion
GCP_PROJECT_ID = os.environ.get("SYSTEM_TESTS_GCP_PROJECT",
"example-project")
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]