Skip to content

Commit 5a746f2

Browse files
committed
Fix some things
1 parent 13bbfd4 commit 5a746f2

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

lib/pavilion/clean.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
from pavilion import groups
99
from pavilion import lockfile
1010
from pavilion import utils
11+
from pavilion import config
1112
from pavilion.builder import TestBuilder
1213
from pavilion.test_run import test_run_attr_transform, TestAttributes
1314

lib/pavilion/series/test_set.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,8 @@ def __ordered_split(self) -> List['TestSet']:
190190
return test_sets
191191

192192
def make_iter(self, build_only: bool = False, rebuild: bool = False,
193-
local_builds_only: bool = False) -> Iterator[List[TestRun]]:
193+
local_builds_only: bool = False,
194+
show_tracebacks: bool = False) -> Iterator[List[TestRun]]:
194195
"""Resolve the given tests names and options into actual test run objects, and print
195196
the test creation status. This returns an iterator over batches tests, respecting the
196197
batch_size (half the simultanious limit).

0 commit comments

Comments
 (0)