feluelle commented on a change in pull request #7422: [AIRFLOW-6809] Test for presto operators URL: https://github.com/apache/airflow/pull/7422#discussion_r386018640
########## File path: tests/providers/presto/operators/test_presto_check.py ########## @@ -16,23 +16,206 @@ # specific language governing permissions and limitations # under the License. # + + import os import unittest +from datetime import datetime + +import mock + +from airflow.exceptions import AirflowException +from airflow.models import DAG +from airflow.providers.presto.operators.presto_check import ( + PrestoCheckOperator, PrestoIntervalCheckOperator, PrestoValueCheckOperator, +) +from tests.providers.apache.hive import DEFAULT_DATE Review comment: Can you also define a new `DEFAULT_DATE` here? We do not need to use hive ones. ---------------------------------------------------------------- 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] With regards, Apache Git Services
