mik-laj commented on a change in pull request #8556:
URL: https://github.com/apache/airflow/pull/8556#discussion_r415077858
##########
File path:
airflow/providers/google/cloud/example_dags/example_gcs_to_bigquery.py
##########
@@ -53,7 +53,7 @@
delete_test_dataset = BashOperator(
task_id='delete_airflow_test_dataset',
- bash_command='bq rm -rf airflow_test',
+ bash_command='bq rm -r -f airflow_test',
Review comment:
Here is the problem with test isolation. When two tests are run
simultaneously, they will conflict. Can you move the dataset name to the
environment variables? We want to generate environment variables to ensure
isolation between tests.
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]