File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -178,8 +178,8 @@ async def main():
178178
179179# These are not test classes, so we need to set __test__ to False to avoid pytest warnings.
180180# Do this here because for some reason our docs generation doesn't like it when done in the classes themselves.
181- TestResultsAPI .__test__ = False
182- TestResultsAPIAsync .__test__ = False
181+ TestResultsAPI .__test__ = False # type: ignore
182+ TestResultsAPIAsync .__test__ = False # type: ignore
183183
184184__all__ = [
185185 "AssetsAPI" ,
Original file line number Diff line number Diff line change 176176
177177# These are not test classes, so we need to set __test__ to False to avoid pytest warnings.
178178# Do this here because for some reason our docs generation doesn't like it when done in the classes themselves.
179- TestStepType .__test__ = False
180- TestMeasurementType .__test__ = False
181- TestMeasurement .__test__ = False
182- TestMeasurementCreate .__test__ = False
183- TestMeasurementUpdate .__test__ = False
184- TestStatus .__test__ = False
185- TestStep .__test__ = False
186- TestStepCreate .__test__ = False
187- TestReport .__test__ = False
188- TestReportCreate .__test__ = False
189- TestReportUpdate .__test__ = False
179+ TestStepType .__test__ = False # type: ignore
180+ TestMeasurementType .__test__ = False # type: ignore
181+ TestMeasurement .__test__ = False # type: ignore
182+ TestMeasurementCreate .__test__ = False # type: ignore
183+ TestMeasurementUpdate .__test__ = False # type: ignore
184+ TestStatus .__test__ = False # type: ignore
185+ TestStep .__test__ = False # type: ignore
186+ TestStepCreate .__test__ = False # type: ignore
187+ TestReport .__test__ = False # type: ignore
188+ TestReportCreate .__test__ = False # type: ignore
189+ TestReportUpdate .__test__ = False # type: ignore
190190
191191__all__ = [
192192 "Asset" ,
You can’t perform that action at this time.
0 commit comments