Merge branch 'master' into feature/esp32s2beta_merge

This commit is contained in:
Angus Gratton
2019-09-19 21:17:31 +10:00
committed by Angus Gratton
129 changed files with 1751 additions and 1431 deletions

View File

@@ -9,6 +9,11 @@ import argparse
import yaml
try:
from yaml import CLoader as Loader
except ImportError:
from yaml import Loader as Loader
try:
from Utility import CIAssignTest
except ImportError:
@@ -128,7 +133,7 @@ class UnitTestAssignTest(CIAssignTest.AssignTest):
try:
with open(test_case_path, "r") as f:
raw_data = yaml.load(f)
raw_data = yaml.load(f, Loader=Loader)
test_cases = raw_data["test cases"]
except IOError:
print("Test case path is invalid. Should only happen when use @bot to skip unit test.")