Skip to content

Commit cb6ecc7

Browse files
author
Takashi Matsuo
authored
cleanup: replace sanity check with confidence check (GoogleCloudPlatform#4758)
1 parent 798aeaf commit cb6ecc7

14 files changed

+14
-14
lines changed

auth/end-user/web/main_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import main
1818

1919
# Note: samples that do end-user auth are difficult to test in an automated
20-
# way. These tests are basic sanity checks.
20+
# way. These tests are basic confidence checks.
2121

2222

2323
@pytest.fixture

composer/workflows/bashoperator_python2_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def test_dag_import():
1919
"""Test that the DAG file can be successfully imported.
2020
2121
This tests that the DAG can be parsed, but does not run it in an Airflow
22-
environment. This is a recommended sanity check by the official Airflow
22+
environment. This is a recommended confidence check by the official Airflow
2323
docs: https://airflow.incubator.apache.org/tutorial.html#testing
2424
"""
2525
from . import bashoperator_python2 as module

composer/workflows/bq_copy_across_locations_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def test_dag():
4141
"""Test that the DAG file can be successfully imported.
4242
4343
This tests that the DAG can be parsed, but does not run it in an Airflow
44-
environment. This is a recommended sanity check by the official Airflow
44+
environment. This is a recommended confidence check by the official Airflow
4545
docs: https://airflow.incubator.apache.org/tutorial.html#testing
4646
"""
4747
example_file_path = os.path.join(

composer/workflows/bq_notify_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def test_dag_import():
2121
"""Test that the DAG file can be successfully imported.
2222
2323
This tests that the DAG can be parsed, but does not run it in an Airflow
24-
environment. This is a recommended sanity check by the official Airflow
24+
environment. This is a recommended confidence check by the official Airflow
2525
docs: https://airflow.incubator.apache.org/tutorial.html#testing
2626
"""
2727
models.Variable.set('gcs_bucket', 'example_bucket')

composer/workflows/connections_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def test_dag_import():
1919
"""Test that the DAG file can be successfully imported.
2020
2121
This tests that the DAG can be parsed, but does not run it in an Airflow
22-
environment. This is a recommended sanity check by the official Airflow
22+
environment. This is a recommended confidence check by the official Airflow
2323
docs: https://airflow.incubator.apache.org/tutorial.html#testing
2424
"""
2525
from . import connections as module

composer/workflows/dataflowtemplateoperator_tutorial_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def test_dag_import():
2121
"""Test that the DAG file can be successfully imported.
2222
2323
This tests that the DAG can be parsed, but does not run it in an Airflow
24-
environment. This is a recommended sanity check by the official Airflow
24+
environment. This is a recommended confidence check by the official Airflow
2525
docs: https://airflow.incubator.apache.org/tutorial.html#testing
2626
"""
2727
models.Variable.set("bucket_path", "gs://example_bucket")

composer/workflows/dataproc_workflow_template_instantiate_operator_tutorial_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def test_dag_import():
2121
"""Test that the DAG file can be successfully imported.
2222
2323
This tests that the DAG can be parsed, but does not run it in an Airflow
24-
environment. This is a recommended sanity check by the official Airflow
24+
environment. This is a recommended confidence check by the official Airflow
2525
docs: https://airflow.incubator.apache.org/tutorial.html#testing
2626
"""
2727
models.Variable.set("project_id", "example-project")

composer/workflows/hadoop_tutorial_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def test_dag_import():
2121
"""Test that the DAG file can be successfully imported.
2222
2323
This tests that the DAG can be parsed, but does not run it in an Airflow
24-
environment. This is a recommended sanity check by the official Airflow
24+
environment. This is a recommended confidence check by the official Airflow
2525
docs: https://airflow.incubator.apache.org/tutorial.html#testing
2626
"""
2727
models.Variable.set('gcs_bucket', 'example_bucket')

composer/workflows/kubernetes_pod_operator_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def test_dag_import():
1818
"""Test that the DAG file can be successfully imported.
1919
2020
This tests that the DAG can be parsed, but does not run it in an Airflow
21-
environment. This is a recommended sanity check by the official Airflow
21+
environment. This is a recommended confidence check by the official Airflow
2222
docs: https://airflow.incubator.apache.org/tutorial.html#testing
2323
"""
2424
from . import kubernetes_pod_operator as module

composer/workflows/pythonvirtualenvoperator_python2_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def test_dag_import():
1919
"""Test that the DAG file can be successfully imported.
2020
2121
This tests that the DAG can be parsed, but does not run it in an Airflow
22-
environment. This is a recommended sanity check by the official Airflow
22+
environment. This is a recommended confidence check by the official Airflow
2323
docs: https://airflow.incubator.apache.org/tutorial.html#testing
2424
"""
2525
from . import pythonvirtualenvoperator_python2 as module

composer/workflows/quickstart_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def test_dag_import():
2121
"""Test that the DAG file can be successfully imported.
2222
2323
This tests that the DAG can be parsed, but does not run it in an Airflow
24-
environment. This is a recommended sanity check by the official Airflow
24+
environment. This is a recommended confidence check by the official Airflow
2525
docs: https://airflow.incubator.apache.org/tutorial.html#testing
2626
"""
2727
models.Variable.set('gcs_bucket', 'example_bucket')

composer/workflows/simple_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def test_dag_import():
1919
"""Test that the DAG file can be successfully imported.
2020
2121
This tests that the DAG can be parsed, but does not run it in an Airflow
22-
environment. This is a recommended sanity check by the official Airflow
22+
environment. This is a recommended confidence check by the official Airflow
2323
docs: https://airflow.incubator.apache.org/tutorial.html#testing
2424
"""
2525
from . import simple as module

composer/workflows/trigger_response_dag_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def test_dag_import():
1919
"""Test that the DAG file can be successfully imported.
2020
2121
This tests that the DAG can be parsed, but does not run it in an Airflow
22-
environment. This is a recommended sanity check by the official Airflow
22+
environment. This is a recommended confidence check by the official Airflow
2323
docs: https://airflow.incubator.apache.org/tutorial.html#testing
2424
"""
2525
from . import trigger_response_dag as module

composer/workflows/use_local_deps_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def test_dag_import():
3636
"""Test that the DAG file can be successfully imported.
3737
3838
This tests that the DAG can be parsed, but does not run it in an Airflow
39-
environment. This is a recommended sanity check by the official Airflow
39+
environment. This is a recommended confidence check by the official Airflow
4040
docs: https://airflow.incubator.apache.org/tutorial.html#testing
4141
"""
4242
from . import use_local_deps as module

0 commit comments

Comments
 (0)