diff options
-rw-r--r-- | ci/config_functest.yaml | 1 | ||||
-rwxr-xr-x | ci/exec_test.sh | 3 | ||||
-rw-r--r-- | ci/testcases.yaml | 9 |
3 files changed, 13 insertions, 0 deletions
diff --git a/ci/config_functest.yaml b/ci/config_functest.yaml index 5623a71c1..cc5c82aca 100644 --- a/ci/config_functest.yaml +++ b/ci/config_functest.yaml @@ -20,6 +20,7 @@ general: dir_repo_onos: /home/opnfv/repos/onos dir_repo_promise: /home/opnfv/repos/promise dir_repo_doctor: /home/opnfv/repos/doctor + dir_repo_copper: /home/opnfv/repos/copper dir_repo_ovno: /home/opnfv/repos/ovno dir_functest: /home/opnfv/functest dir_results: /home/opnfv/functest/results diff --git a/ci/exec_test.sh b/ci/exec_test.sh index daa469068..519ade4b6 100755 --- a/ci/exec_test.sh +++ b/ci/exec_test.sh @@ -134,6 +134,9 @@ function run_test(){ source ${FUNCTEST_CONF_DIR}/stackrc python ${FUNCTEST_REPO_DIR}/testcases/security_scan/security_scan.py --config ${FUNCTEST_REPO_DIR}/testcases/security_scan/config.ini ;; + "copper") + python ${FUNCTEST_REPO_DIR}/testcases/features/copper.py + ;; *) echo "The test case '${test_name}' does not exist." exit 1 diff --git a/ci/testcases.yaml b/ci/testcases.yaml index cfd93e4fd..491ddad90 100644 --- a/ci/testcases.yaml +++ b/ci/testcases.yaml @@ -142,6 +142,15 @@ tiers: installer: 'apex' scenario: '' + - + name: copper + criteria: 'status == "PASS"' + description: >- + Test suite for policy management based on OpenStack Congress + dependencies: + installer: 'apex' + scenario: '' + - name: openstack order: 4 |