fix test bundling bug
This commit is contained in:
@@ -61,6 +61,11 @@ class Scheduler:
|
||||
if not bundles:
|
||||
return f"Error: No test bundles could be created from the provided tests."
|
||||
|
||||
# Print all test bundles for debugging
|
||||
print("Compiled Test Bundles:")
|
||||
for bundle in bundles:
|
||||
print(f"Bundle Index: {bundle.index}, Device: {bundle.device}, Priority: {bundle.priority}, Config: {bundle.config}, Total Minutes: {bundle.total_minutes}, Tests: {bundle.tests}")
|
||||
|
||||
active_dut_bundles = [b for b in bundles if b.device == DUT]
|
||||
active_ref_bundles = [b for b in bundles if b.device == REF]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user