diff options
Diffstat (limited to 'ci')
-rwxr-xr-x | ci/exec_test.sh | 3 | ||||
-rwxr-xr-x | ci/run_tests.py | 1 | ||||
-rw-r--r-- | ci/testcases.yaml | 11 |
3 files changed, 13 insertions, 2 deletions
diff --git a/ci/exec_test.sh b/ci/exec_test.sh index 7e57cd5e4..26067a5d3 100755 --- a/ci/exec_test.sh +++ b/ci/exec_test.sh @@ -166,6 +166,9 @@ function run_test(){ "domino") python ${FUNCTEST_REPO_DIR}/testcases/features/domino.py ;; + "odl-sfc") + python ${FUNCTEST_REPO_DIR}/testcases/features/sfc/sfc.py + ;; *) echo "The test case '${test_name}' does not exist." exit 1 diff --git a/ci/run_tests.py b/ci/run_tests.py index f172eecc6..a024dd720 100755 --- a/ci/run_tests.py +++ b/ci/run_tests.py @@ -104,7 +104,6 @@ def run_test(test, tier_name): duration_str = ("%02d:%02d" % divmod(duration, 60)) logger.info("Test execution time: %s" % duration_str) - result = 0 if result != 0: logger.error("The test case '%s' failed. " % test_name) OVERALL_RESULT = -1 diff --git a/ci/testcases.yaml b/ci/testcases.yaml index 84dd8e483..e5182c19a 100644 --- a/ci/testcases.yaml +++ b/ci/testcases.yaml @@ -151,7 +151,7 @@ tiers: Simple security Scan dependencies: installer: 'apex' - scenario: '' + scenario: 'disable' - name: copper @@ -189,6 +189,15 @@ tiers: dependencies: installer: 'joid' scenario: '' + - + name: odl-sfc + criteria: 'status == "PASS"' + blocking: false + description: >- + Test suite for odl-sfc to test two chains and two SFs + dependencies: + installer: 'fuel' + scenario: 'odl_l2-sfc' - name: openstack order: 4 |