We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d7e935 commit c249b97Copy full SHA for c249b97
runTests.py
@@ -131,9 +131,12 @@ def run(self):
131
user_tests = "rocm"
132
if user_tests != "":
133
precmd = "export USER_UNIT_TESTS=%s ;" % user_tests
134
- skiptests = ""
+ skipped = []
135
if "lxplus" in getHostName():
136
- skiptests = "SKIP_UNITTESTS=ExpressionEvaluatorUnitTest"
+ skipped.append("ExpressionEvaluatorUnitTest")
137
+ skipped += [t for t in os.environ.get("SKIP_UNITTESTS", "").split(" ") if t]
138
+ skiptests = " ".join(["skiptest_%s" % t for t in skipped])
139
+ print("Skipped tests> %s" % skiptests)
140
TEST_PATH = os.environ["CMSSW_RELEASE_BASE"] + "/test/" + arch
141
err, cmd = run_cmd(
142
"cd "
0 commit comments