Commit b7c98bbc authored by Elisabetta Giani's avatar Elisabetta Giani
Browse files

fix_artifacts: correct filename in test-harness Makefile (csp-lmc-common)

Wait more time to wait state transitions in CspMater_test.py
parent a71feb09
Loading
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -72,9 +72,9 @@ pages:
    - cp -R $MIDCSP_PATH/build/* public
    - ls -lR public
    - junitparser merge public/reports/csp-lmc-common-unit-tests.xml public/reports/csp-lmc-mid-unit-tests.xml public/reports/unit-tests.xml
    - junitparser merge public/reports/csp-lmc_common-linting.xml public/reports/csp-lmc-mid-linting.xml public/reports/unit-tests.xml
    - rm public/reports/csp-lmc-common-unit-tests.xml public/reports/csp-lmc_common-linting.xml
    - rm public/reports/csp-lmc-mid-unit-tests.xml public/reports/csp-lmc-mid-linting.xml
    - junitparser merge public/reports/csp-lmc-common-linting.xml public/reports/csp-lmc-mid-linting.xml public/reports/linting.xml
    - rm public/reports/csp-lmc-common-unit-tests.xml public/reports/csp-lmc-common-linting.xml
    - rm public/reports/csp-lmc-common-lintig.xml public/reports/csp-lmc-mid-linting.xml
    - cd public
    - ls -laR      
    - coverage combine csp-lmc-common_coverage csp-lmc-mid_coverage
+2 −2
Original line number Diff line number Diff line
@@ -154,7 +154,7 @@ class TestCspMaster(object):
        # issue the "On" command on CbfTestMaster device
        argin = [tango_context.device.cbfMasterAddress,]
        tango_context.device.On(argin)
        time.sleep(3)
        time.sleep(4)
        assert tango_context.device.cspCbfState == DevState.ON

    def test_on_command_duration(self, tango_context):
@@ -177,7 +177,7 @@ class TestCspMaster(object):
        # issue the "On" command on CbfTestMaster device
        argin = [tango_context.device.cbfMasterAddress,]
        tango_context.device.Standby(argin)
        time.sleep(3)
        time.sleep(4)
        assert tango_context.device.cspCbfState == DevState.STANDBY

    def test_standby_command_duration(self, tango_context):