TestPhases: Add phases spec alias "All"

Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
Jan Lindemann 2022-12-15 13:20:09 +01:00
commit 174286e3cc

View file

@ -19,6 +19,8 @@ class TestPhases: # export
@staticmethod
def parse(spec):
if spec in ['all', 'All']:
spec = 'Pre-Post'
r = set()
terms = spec.split('|')
for t in terms: