Skip to content

Commit

Permalink
Correct cannot collect test class warnings
Browse files Browse the repository at this point in the history
Signed-off-by: Gábor Lipták <[email protected]>
  • Loading branch information
gliptak committed Jun 13, 2024
1 parent 4e4450a commit bf5b570
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions dataprofiler/tests/profilers/test_histogram_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ 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,7 @@


class TestColumn(NumericStatsMixin):
__test__ = False
def __init__(self):
NumericStatsMixin.__init__(self)
self.match_count = 0
Expand All @@ -32,6 +33,7 @@ def _filter_properties_w_options(self, calculations, options):


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

0 comments on commit bf5b570

Please sign in to comment.