From 04d2e806ff8fb4f008d2d1cdd9625ee0c1911a92 Mon Sep 17 00:00:00 2001 From: boccioli_m Date: Mon, 15 May 2017 18:24:02 +0200 Subject: [PATCH] Script execution --- .../tests/PS Tests/test without ioc/test without ioc.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/script/tests/tests/PS Tests/test without ioc/test without ioc.py b/script/tests/tests/PS Tests/test without ioc/test without ioc.py index bd89622..af7f8a8 100644 --- a/script/tests/tests/PS Tests/test without ioc/test without ioc.py +++ b/script/tests/tests/PS Tests/test without ioc/test without ioc.py @@ -4,11 +4,14 @@ # testing environment setup (if script is launched directly without Testinglist) is_panel = get_exec_pars().source != CommandSource.ui +test = "" +DEVICE = "" +parameters = "" if not is_panel: # set up params for testing - testName = "test without ioc" + test = "test without ioc" DEVICE = "no-device" - params = "{'howManySamples': {'description': 'How many samples are plotted', 'value': '50'}, 'delayBetweenSampleS': {'description': 'delay [s] between two samples', 'value': '0.05'}, 'repeatTimes': {'description': 'how many times the test is repeated', 'value': '3'}}" + parameters = "{'howManySamples': {'description': 'How many samples are plotted', 'value': '50'}, 'delayBetweenSampleS': {'description': 'delay [s] between two samples', 'value': '0.05'}, 'repeatTimes': {'description': 'how many times the test is repeated', 'value': '3'}}" startTest(testName, DEVICE, params) pass