We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a936077 commit 57ec145Copy full SHA for 57ec145
codeflash/discovery/discover_unit_tests.py
@@ -315,10 +315,8 @@ def discover_unit_tests(
315
# Extract all functions to optimize for import filtering
316
functions_to_optimize = None
317
if file_to_funcs_to_optimize:
318
- functions_to_optimize = [
319
- func for funcs_list in file_to_funcs_to_optimize.values() for func in funcs_list
320
- ]
321
-
+ functions_to_optimize = [func for funcs_list in file_to_funcs_to_optimize.values() for func in funcs_list]
+
322
return strategy(cfg, discover_only_these_tests, functions_to_optimize)
323
324
0 commit comments