Skip to content

Commit

Permalink
[BUGFIX] Capital one contrib/micdavis/import hotfix (#6922)
Browse files Browse the repository at this point in the history
Co-authored-by: Anthony Burdi <anthony@greatexpectations.io>
  • Loading branch information
micdavis and anthonyburdi authored Jan 26, 2023
1 parent 56a208b commit 67a12a0
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
from typing import Any, Dict, List, Optional

from contrib.capitalone_dataprofiler_expectations.capitalone_dataprofiler_expectations.rule_based_profiler.data_assistant_result.data_profiler_structured_data_assistant_result import (
from capitalone_dataprofiler_expectations.rule_based_profiler.data_assistant_result import (
DataProfilerStructuredDataAssistantResult,
)

from great_expectations.rule_based_profiler.config import ParameterBuilderConfig
from great_expectations.rule_based_profiler.data_assistant import DataAssistant
from great_expectations.rule_based_profiler.data_assistant_result import (
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
import os
import sys

from great_expectations.self_check.util import build_test_backends_list

sys.path.insert(0, os.path.abspath("../.."))


def pytest_addoption(parser):
# note: --no-spark will be deprecated in favor of --spark
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ def test_profile_data_profiler_structured_data_assistant_metrics_count(
):
num_metrics += len(parameter_values_for_fully_qualified_parameter_names)

assert num_metrics == 14
assert num_metrics == 28


@pytest.mark.integration
Expand Down

0 comments on commit 67a12a0

Please sign in to comment.