dstandish commented on code in PR #37016: URL: https://github.com/apache/airflow/pull/37016#discussion_r1497977656
########## tests/datasets/test_dataset.py: ########## @@ -18,13 +18,19 @@ from __future__ import annotations import os +from collections import defaultdict import pytest +from sqlalchemy.sql import select from airflow.datasets import Dataset +from airflow.models.dataset import DatasetAll, DatasetAny, DatasetDagRunQueue, DatasetModel +from airflow.models.serialized_dag import SerializedDagModel from airflow.operators.empty import EmptyOperator +from airflow.serialization.serialized_objects import BaseSerialization, SerializedDAG [email protected]_test Review Comment: I am not sure, @sunank200 added that in response to test failures i can take a look. -- 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]
