Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[dagster-airlift] full revamp #23410

Merged
merged 1 commit into from
Aug 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/experimental/dagster-airlift/conftest.py
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"]
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,
)
Loading