deedmitrij commented on a change in pull request #17868:
URL: https://github.com/apache/airflow/pull/17868#discussion_r700082731
##########
File path: tests/providers/google/suite/operators/test_sheets_system.py
##########
@@ -38,7 +38,13 @@ def helper():
@pytest.mark.system("google.suite")
@pytest.mark.credential_file(GCP_GCS_KEY)
class TestSystemSheetsToGcs(GoogleSystemTest):
+ def setUp(self):
+ super().setUp()
+
@pytest.mark.usefixtures("helper")
@provide_gcp_context(GCP_GCS_KEY, scopes=SCOPES)
def test_run_example_dag(self):
self.run_dag('example_sheets_gcs', GSUITE_DAG_FOLDER)
+
+ def tearDown(self):
+ super().tearDown()
Review comment:
It was added for explicit representation and in correspondence to other
tests which have setUp\tearDown methods. Also it will help to quickly add some
logic to these methods inside test.
--
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]