Skip to content

Commit

Permalink
do not override time_limit
Browse files Browse the repository at this point in the history
  • Loading branch information
Samuel Moors committed Oct 7, 2024
1 parent 94d16e7 commit b69d1ee
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion eessi/testsuite/eessi_mixin.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ def __init_subclass__(cls, **kwargs):
super().__init_subclass__(**kwargs)
cls.valid_prog_environs = ['default']
cls.valid_systems = ['*']
cls.time_limit = '1h'
if not cls.time_limit:
cls.time_limit = '1h'

# Helper function to validate if an attribute is present it item_dict.
# If not, print it's current name, value, and the valid_values
Expand Down

0 comments on commit b69d1ee

Please sign in to comment.