From 3b226b35b05740df9f591dddd45688d509a2d945 Mon Sep 17 00:00:00 2001 From: Hank Wikle Date: Thu, 5 Dec 2024 15:44:35 -0700 Subject: [PATCH] Fix some things --- lib/pavilion/clean.py | 1 + lib/pavilion/series/test_set.py | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/pavilion/clean.py b/lib/pavilion/clean.py index f58406ebc..c27a575b7 100644 --- a/lib/pavilion/clean.py +++ b/lib/pavilion/clean.py @@ -8,6 +8,7 @@ from pavilion import groups from pavilion import lockfile from pavilion import utils +from pavilion import config from pavilion.builder import TestBuilder from pavilion.test_run import test_run_attr_transform, TestAttributes diff --git a/lib/pavilion/series/test_set.py b/lib/pavilion/series/test_set.py index 0d0e3792d..b271de641 100644 --- a/lib/pavilion/series/test_set.py +++ b/lib/pavilion/series/test_set.py @@ -190,7 +190,8 @@ def __ordered_split(self) -> List['TestSet']: return test_sets def make_iter(self, build_only: bool = False, rebuild: bool = False, - local_builds_only: bool = False) -> Iterator[List[TestRun]]: + local_builds_only: bool = False, + show_tracebacks: bool = False) -> Iterator[List[TestRun]]: """Resolve the given tests names and options into actual test run objects, and print the test creation status. This returns an iterator over batches tests, respecting the batch_size (half the simultanious limit).