Skip to content

Commit 6a17708

Browse files
committed
Correct cannot collect test class warnings
Signed-off-by: Gábor Lipták <[email protected]>
1 parent 4e4450a commit 6a17708

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

dataprofiler/tests/profilers/test_histogram_utils.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ def mock_sqrt_return_nan(profile):
3333

3434

3535
class TestColumn(NumericStatsMixin):
36+
__test__ = False
3637
def __init__(self):
3738
NumericStatsMixin.__init__(self)
3839
self.times = defaultdict(float)

dataprofiler/tests/profilers/test_numeric_stats_mixin_profile.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919

2020

2121
class TestColumn(NumericStatsMixin):
22+
__test__ = False
2223
def __init__(self):
2324
NumericStatsMixin.__init__(self)
2425
self.match_count = 0
@@ -32,6 +33,7 @@ def _filter_properties_w_options(self, calculations, options):
3233

3334

3435
class TestColumnWProps(TestColumn):
36+
__test__ = False
3537
# overrides the property func
3638
median = None
3739
mode = None

0 commit comments

Comments
 (0)