Skip to content

Commit

Permalink
Fix failing main (apache#43322)
Browse files Browse the repository at this point in the history
Test was failing here: https://github.com/apache/airflow/actions/runs/11482958870/job/31957874656?pr=43291

```
=========================== short test summary info ============================
FAILED tests/always/test_project_structure.py::TestProjectStructure::test_providers_modules_should_have_tests - AssertionError: Detect added tests in providers module - please remove the tests from OVERLOOKED_TESTS list above
assert equals failed
  set()                            set([
                                     'providers/tests/google/cloud
                                   /sensors/test_dataform.py',
                                   ])
= 1 failed, 12165 passed, 9445 skipped, 2 xfailed, 5 warnings in 571.47s (0:09:31) =

```

This was because the test was added in apache#43055
  • Loading branch information
kaxil authored and ellisms committed Nov 13, 2024
1 parent 4e77850 commit c5d8026
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@

# [START howto_operator_create_workflow_invocation_action_async]
create_workflow_invocation_async_action = DataformCreateWorkflowInvocationOperator(
task_id="create-workflow-invocation-async",
task_id="create-workflow-invocation-async-action",
project_id=PROJECT_ID,
region=REGION,
repository_id=REPOSITORY_ID,
Expand All @@ -190,7 +190,7 @@
)

is_workflow_invocation_action_done = DataformWorkflowInvocationActionStateSensor(
task_id="is-workflow-invocation-done",
task_id="is-workflow-invocation-action-done",
project_id=PROJECT_ID,
region=REGION,
repository_id=REPOSITORY_ID,
Expand Down
1 change: 0 additions & 1 deletion tests/always/test_project_structure.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,6 @@ def test_providers_modules_should_have_tests(self):
"providers/tests/google/cloud/operators/vertex_ai/test_hyperparameter_tuning_job.py",
"providers/tests/google/cloud/operators/vertex_ai/test_model_service.py",
"providers/tests/google/cloud/operators/vertex_ai/test_pipeline_job.py",
"providers/tests/google/cloud/sensors/test_dataform.py",
"providers/tests/google/cloud/transfers/test_bigquery_to_sql.py",
"providers/tests/google/cloud/transfers/test_presto_to_gcs.py",
"providers/tests/google/cloud/utils/test_bigquery.py",
Expand Down

0 comments on commit c5d8026

Please sign in to comment.