Skip to content

Commit

Permalink
Fix flake8 issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Caspar van Leeuwen committed Nov 28, 2024
1 parent a401c72 commit 5bf9dab
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions eessi/testsuite/eessi_mixin.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from reframe.core.builtins import parameter, run_after, variable
from reframe.core.exceptions import ReframeFatalError, SanityError
from reframe.core.exceptions import ReframeFatalError
from reframe.core.pipeline import RegressionMixin
from reframe.utility.sanity import make_performance_function
import reframe.utility.sanity as sn
Expand Down Expand Up @@ -197,11 +197,11 @@ def extract_runtime_info_from_log(self):
self.cvmfs_repo_name = f'{repo_name}'

software_subdir = sn.extractall(r'EESSI_SOFTWARE_SUBDIR: (?P<subdir>.*)$',
f'{self.stagedir}/{self.stdout}', 'subdir', str)
f'{self.stagedir}/{self.stdout}', 'subdir', str)
if software_subdir:
self.cvmfs_software_subdir = f'{software_subdir}'

module_path = sn.extractall(r'FULL_MODULEPATH: (?P<modpath>.*)$', f'{self.stagedir}/{self.stdout}',
'modpath', str)
'modpath', str)
if module_path:
self.full_modulepath = f'{module_path}'

0 comments on commit 5bf9dab

Please sign in to comment.