File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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"
You can’t perform that action at this time.
0 commit comments