ashb closed pull request #2530: [WIP] fix non imported tests URL: https://github.com/apache/incubator-airflow/pull/2530
This is a PR merged from a forked repository. As GitHub hides the original diff on merge, it is displayed below for the sake of provenance: As this is a foreign pull request (from a fork), the diff is supplied below (as it won't show otherwise due to GitHub magic): diff --git a/tests/__init__.py b/tests/__init__.py index 20f8c48d2a..c6ba0297d5 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -22,6 +22,7 @@ from .jobs import * from .impersonation import * from .models import * +from .plugins_manager import * from .operators import * from .security import * -from .utils import * +from .test_utils import * diff --git a/tests/api/common/experimental/mark_tasks.py b/tests/api/common/experimental/test_mark_tasks.py similarity index 100% rename from tests/api/common/experimental/mark_tasks.py rename to tests/api/common/experimental/test_mark_tasks.py diff --git a/tests/contrib/hooks/gcp_pubsub_hook.py b/tests/contrib/hooks/test_gcp_pubsub_hook.py similarity index 100% rename from tests/contrib/hooks/gcp_pubsub_hook.py rename to tests/contrib/hooks/test_gcp_pubsub_hook.py diff --git a/tests/contrib/operators/pubsub_operator.py b/tests/contrib/operators/test_pubsub_operator.py similarity index 100% rename from tests/contrib/operators/pubsub_operator.py rename to tests/contrib/operators/test_pubsub_operator.py diff --git a/tests/utils.py b/tests/test_utils.py similarity index 100% rename from tests/utils.py rename to tests/test_utils.py ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on 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
