Skip to content

Commit

Permalink
Trying to make the linter happy.
Browse files Browse the repository at this point in the history
  • Loading branch information
Satish Kamath committed Jun 10, 2024
1 parent e523458 commit c5e0245
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions eessi/testsuite/tests/apps/espresso/espresso.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
from eessi.testsuite.constants import *
from eessi.testsuite.utils import find_modules, log


def filter_scales_P3M():
"""
Filtering function for filtering scales for P3M test.
Expand Down Expand Up @@ -67,8 +68,8 @@ def run_after_init(self):
@run_after('init')
def set_tag_ci(self):
""" Setting tests under CI tag. """
if (self.benchmark_info[0] in ['mpi.ionic_crystals.p3m']
and SCALES[self.scale]['num_nodes'] < 2):
if (self.benchmark_info[0] in ['mpi.ionic_crystals.p3m'] and
SCALES[self.scale]['num_nodes'] < 2):
self.tags.add('CI')
log(f'tags set to {self.tags}')

Expand Down

0 comments on commit c5e0245

Please sign in to comment.