Changes in tests/pybin/settings.py [64cf022:41af19c]
- File:
-
- 1 edited
-
tests/pybin/settings.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tests/pybin/settings.py
r64cf022 r41af19c 81 81 return True if not arch else self.target == arch 82 82 83 @ staticmethod84 def make_canonical( arch):83 @classmethod 84 def make_canonical(_, arch): 85 85 return Architecture.KnownArchitectures[arch] 86 86 … … 105 105 self.total = Timeouts.check(tg) 106 106 107 @ staticmethod108 def check( value):107 @classmethod 108 def check(_, value): 109 109 if value < 1: 110 110 print("Timeouts must be at least 1 second", file=sys.stderr)
Note:
See TracChangeset
for help on using the changeset viewer.