-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
59 changed files
with
864 additions
and
754 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
pytest_plugins = ["dagster_airlift.shared_fixtures"] | ||
pytest_plugins = ["dagster_airlift.test.shared_fixtures"] |
15 changes: 8 additions & 7 deletions
15
examples/experimental/dagster-airlift/dagster_airlift/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
from .airflow_utils import ( | ||
from .core.basic_auth import BasicAuthBackend as BasicAuthBackend | ||
from .core.defs_from_airflow import ( | ||
AirflowInstance as AirflowInstance, | ||
AirflowMigrationLoader as AirflowMigrationLoader, | ||
BasicAuthBackend as BasicAuthBackend, | ||
TaskMapping as TaskMapping, | ||
airflow_task_mappings_from_dbt_project as airflow_task_mappings_from_dbt_project, | ||
assets_defs_from_airflow_instance as assets_defs_from_airflow_instance, | ||
build_airflow_polling_sensor as build_airflow_polling_sensor, | ||
create_defs_from_airflow_instance as create_defs_from_airflow_instance, | ||
) | ||
from .core.migration_state import load_migration_state_from_yaml as load_migration_state_from_yaml | ||
from .core.multi_asset import ( | ||
PythonDefs as PythonDefs, | ||
load_defs_from_yaml as load_defs_from_yaml, | ||
) |
Oops, something went wrong.