From e5616891aa6aae294817bbd1394057c53e9a3f34 Mon Sep 17 00:00:00 2001
From: Luis Araujo <luis.araujo@collabora.co.uk>
Date: Wed, 21 Nov 2018 00:55:18 +0800
Subject: [PATCH] Add new test case types in the parser

Add the compatibility and performance test cases type to be recognized
by the parser.

Signed-off-by: Luis Araujo <luis.araujo@collabora.co.uk>
---
 renderer/parser.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/renderer/parser.py b/renderer/parser.py
index 83f2587..8747fed 100644
--- a/renderer/parser.py
+++ b/renderer/parser.py
@@ -15,7 +15,8 @@ test_case_format = {
         'image-type' : (True, [ 'target', 'minimal', 'ostree',
                                 'development', 'SDK', 'any' ]),
         'image-arch' : (True, ['amd64', 'arm64', 'armhf', 'any']),
-        'type' : (True, ['functional', 'sanity', 'system']),
+        'type' : (True, ['compatibility', 'functional', 'performance',
+                         'sanity', 'system']),
         'exec-type' : (True, ['manual' , 'automated']),
         'priority' : (True, ['low', 'medium', 'high', 'critical']),
         'maintainer' : (False, ""),
-- 
GitLab