From d25ded56d251b7a291e66a23d745bc4f00f9f438 Mon Sep 17 00:00:00 2001 From: Thanassis Tsiodras Date: Fri, 11 May 2018 09:02:12 +0000 Subject: [PATCH] Only test the first part of the logic (non-MQ) under CircleCI --- Demo_Ada_GUI/regression.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Demo_Ada_GUI/regression.py b/Demo_Ada_GUI/regression.py index 048987a..a26b56e 100755 --- a/Demo_Ada_GUI/regression.py +++ b/Demo_Ada_GUI/regression.py @@ -28,6 +28,12 @@ if 0!=result: sys.exit(1) commonRegression.g_child.terminate(force=True) +# Stop here when running under CircleCI - the LXC containers +# don't allow us to modify the mqueue settings, and the +# rest of the tests fail. +if os.getenv("CIRCLECI") is not None: + sys.exit(0) + binaries2 = [ "python Test_TM_TC_with_Demo_Ada.py" ] -- GitLab