@@ -21,7 +21,7 @@ def __init__(self, currentTestFile: str, name: str = ""):
2121 Constructor or the class.
2222
2323 Args:
24- currentTestFile (str):
24+ currentTestFile (str):
2525 Path the the current python file. Normally you
2626 simply pass __file__ to this parameter.
2727 name (str):
@@ -55,7 +55,7 @@ def genTestConfigs(self, names:str, params, whenClauses = {}) -> list:
5555 # get name ordering list
5656 nameList = names .split (',' )
5757
58- # gen list of complete configs
58+ # gen list of complete configs
5959 all_configs = []
6060 if isinstance (params , dict ):
6161 all_configs += self ._genOneConfigSeries (names , params )
@@ -64,7 +64,7 @@ def genTestConfigs(self, names:str, params, whenClauses = {}) -> list:
6464 all_configs += self ._genOneConfigSeries (names , p )
6565 else :
6666 raise Exception ("Should never be called !" )
67-
67+
6868 # convert as parametrize with nice name
6969 result = []
7070 for config in all_configs :
@@ -98,7 +98,7 @@ def extractNamingParameters(self, params) -> list:
9898 Args:
9999 params (list|dict):
100100 The list of configuration sets to scan or a single set.
101-
101+
102102 Returns:
103103 The list of names of the variable parameters.
104104 '''
@@ -129,7 +129,7 @@ def extractNamingParameters(self, params) -> list:
129129 # TODO make something better by assigning a priority to vars
130130 variables .sort ()
131131
132- # ok
132+ # ok
133133 return ',' .join (variables )
134134
135135 def _genNextLevelCombinations (self , input : list , paramName : str , paramValues : list ) -> list :
@@ -139,7 +139,7 @@ def _genNextLevelCombinations(self, input: list, paramName: str, paramValues: li
139139 Args:
140140 input (list):
141141 The incoming list of combinations already unpacked before this call.
142- paramName (str):
142+ paramName (str):
143143 Name of the parameter to unpack.
144144 paramValues (list):
145145 The list of values to unpack and to build combinations for.
0 commit comments