Skip to content

Commit 7b74c3d

Browse files
pehalasoyacz
authored andcommitted
fix(test_results): Mark classes to not be collected by pytest
1 parent 1a9ad96 commit 7b74c3d

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

argus/client/tests/test_results.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ class TestStaticResults(StaticGenericResultTable):
1414
"""
1515
Testing Results, which contain all the information in Meta class
1616
"""
17+
__test__ = False
1718

1819
class Meta:
1920
name = "Important Static Results"
@@ -28,6 +29,7 @@ class TestDynamicResults(GenericResultTable):
2829
"""
2930
Testing Results, which pass all the information in the constructor
3031
"""
32+
__test__ = False
3133

3234
def __init__(self, operation):
3335
super().__init__(
@@ -45,6 +47,7 @@ class TestMixedResults(StaticGenericResultTable):
4547
"""
4648
Testing Results, which combine Meta class with some dynamic information
4749
"""
50+
__test__ = False
4851

4952
def __init__(self, operation):
5053
super().__init__(name=f"{operation} - Dynamic Results")
@@ -62,6 +65,7 @@ class TestVisibilityResults(StaticGenericResultTable):
6265
"""
6366
Testing Results with mixed visible and invisible columns
6467
"""
68+
__test__ = False
6569

6670
class Meta:
6771
name = "Visibility Test Results"

0 commit comments

Comments
 (0)