Skip to content

Commit

Permalink
Fix error in cancel
Browse files Browse the repository at this point in the history
  • Loading branch information
hwikle-lanl committed Nov 4, 2024
1 parent 19ebc5d commit f3ab990
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/pavilion/commands/cancel.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,10 @@ def run(self, pav_cfg: PavConfig, args: Namespace) -> int:
series_ids = cmd_utils.resolve_series_ids(series_ranges, pav_cfg)
test_ids = cmd_utils.resolve_test_ids(test_ranges)

args.tests = series_ids + test_ids
else:
args.tests = ['all']

test_paths = cmd_utils.arg_filtered_tests(pav_cfg, args, verbose=self.errfile).paths
tests = cmd_utils.get_tests_by_paths(pav_cfg, test_paths, errfile=self.errfile)

Expand Down

0 comments on commit f3ab990

Please sign in to comment.