Skip to content
Open
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: 2 additions & 0 deletions dataprofiler/tests/profilers/test_histogram_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ def mock_sqrt_return_nan(profile):


class TestColumn(NumericStatsMixin):
__test__ = False

def __init__(self):
NumericStatsMixin.__init__(self)
self.times = defaultdict(float)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@


class TestColumn(NumericStatsMixin):
__test__ = False

def __init__(self):
NumericStatsMixin.__init__(self)
self.match_count = 0
Expand All @@ -32,6 +34,7 @@ def _filter_properties_w_options(self, calculations, options):


class TestColumnWProps(TestColumn):
__test__ = False
# overrides the property func
median = None
mode = None
Expand Down