From 174286e3ccf7896e0a7198efb6e0c81aae8944b2 Mon Sep 17 00:00:00 2001 From: Jan Lindemann Date: Thu, 15 Dec 2022 13:20:09 +0100 Subject: [PATCH] TestPhases: Add phases spec alias "All" Signed-off-by: Jan Lindemann --- src/python/devtest/os/TestPhases.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/python/devtest/os/TestPhases.py b/src/python/devtest/os/TestPhases.py index 9754dae..3487882 100644 --- a/src/python/devtest/os/TestPhases.py +++ b/src/python/devtest/os/TestPhases.py @@ -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: