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

Fix Artifacts Import #46

Merged
merged 6 commits into from
Jan 24, 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
1 change: 1 addition & 0 deletions dbt/tests/__init__.py
mikealfare marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

2 changes: 1 addition & 1 deletion dbt/tests/adapter/basic/test_incremental.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import pytest

# TODO: update to new dbt-artifacts once available
from dbt.artifacts.results import RunStatus
from dbt.artifacts.schemas.results import RunStatus
from dbt.tests.adapter.basic import files
from dbt.tests.util import run_dbt, check_relations_equal, relation_from_name

Expand Down
2 changes: 1 addition & 1 deletion dbt/tests/adapter/catalog/relation_types.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# TODO: repoint to dbt-artifacts when it is available
from dbt.artifacts.catalog import CatalogArtifact
from dbt.artifacts.schemas.catalog import CatalogArtifact
import pytest

from dbt.tests.adapter.catalog import files
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from pathlib import Path

# TODO: repoint to dbt-artifacts when it's available
from dbt.artifacts.results import RunStatus
from dbt.artifacts.schemas.results import RunStatus
import pytest

from dbt.tests.util import check_relations_equal, run_dbt
Expand Down
2 changes: 1 addition & 1 deletion dbt/tests/adapter/store_test_failures_tests/basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from typing import Set

# TODO: repoint to dbt-artifacts when it's available
from dbt.artifacts.results import TestStatus
from dbt.artifacts.schemas.results import TestStatus
import pytest

from dbt.tests.adapter.store_test_failures_tests import _files
Expand Down
Loading