]> granicus.if.org Git - esp-idf/commitdiff
tiny-test-fw: support ignore test cases in CI assign test stage
authorHe Yin Ling <heyinling@espressif.com>
Thu, 26 Jul 2018 07:18:52 +0000 (15:18 +0800)
committerHe Yin Ling <heyinling@espressif.com>
Sat, 28 Jul 2018 07:04:14 +0000 (15:04 +0800)
tools/tiny-test-fw/TinyFW.py
tools/tiny-test-fw/Utility/CIAssignTest.py

index 78783c72a6d484c3c4b26416ef70bdcb7922cc7b..b05150b73059391f53966303eb440d73c6e4adc1 100644 (file)
@@ -107,6 +107,7 @@ MANDATORY_INFO = {
     "execution_time": 1,
     "env_tag": "default",
     "category": "function",
+    "ignore": False,
 }
 
 
index 8d29dc4ec5befe8b1520c0ae8bcccc22a0750f69..3dbea9eff17174749da7799d1056eaa2900de268 100644 (file)
@@ -125,6 +125,7 @@ class AssignTest(object):
     # by default we only run function in CI, as other tests could take long time
     DEFAULT_FILTER = {
         "category": "function",
+        "ignore": False,
     }
 
     def __init__(self, test_case_path, ci_config_file, case_group=Group):