Skip to content

Commit

Permalink
don't error if bench_name is not defined
Browse files Browse the repository at this point in the history
  • Loading branch information
Samuel Moors committed Nov 30, 2024
1 parent a9e77c4 commit 04e8cbe
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions eessi/testsuite/eessi_mixin.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,9 +120,6 @@ def measure_mem_usage(self):
def set_tag_ci(self):
"Set CI tag if bench_name_ci and bench_name are set and are equal"
if self.bench_name_ci:
if not self.bench_name:
msg = "Attribute bench_name_ci is set, but bench_name is not set"
raise ReframeFatalError(msg)
if self.bench_name == self.bench_name_ci:
self.tags.add(TAGS['CI'])
log(f'tags set to {self.tags}')
Expand Down

0 comments on commit 04e8cbe

Please sign in to comment.