From 007a748cbf8acdd8247fccf893e3d909874956b7 Mon Sep 17 00:00:00 2001 From: Jesse Pretorius Date: Wed, 5 Oct 2016 12:15:29 +0100 Subject: [PATCH] Use centralised Ansible test scripts This patch consumes the centralised Ansible test scripts implemented in https://review.openstack.org/381853 Change-Id: I71328a0d24eec716232a227ce52c63e25102ae46 --- tests/test-magnum-functional.yml | 2 +- tox.ini | 45 +++++--------------------------- 2 files changed, 8 insertions(+), 39 deletions(-) diff --git a/tests/test-magnum-functional.yml b/tests/test-magnum-functional.yml index c8a4d05..39bfb3b 100644 --- a/tests/test-magnum-functional.yml +++ b/tests/test-magnum-functional.yml @@ -58,7 +58,7 @@ shell: | . {{ tempest_venv_bin }}/activate {{ tempest_venv_bin | dirname }}/run_tempest.sh --no-virtual-env ${RUN_TEMPEST_OPTS} \ - magnum.tests.functional.api.v1.test_cluster.ClusterTest + magnum.tests.functional.api.v1.test_cluster.ClusterTest.test_create_cluster* environment: RUN_TEMPEST_OPTS: "--serial" vars_files: diff --git a/tox.ini b/tox.ini index 95ff297..59b4154 100644 --- a/tox.ini +++ b/tox.ini @@ -25,6 +25,7 @@ whitelist_externals = setenv = PYTHONUNBUFFERED=1 ROLE_NAME=os_magnum + TEST_IDEMPOTENCE=false VIRTUAL_ENV={envdir} WORKING_DIR={toxinidir} @@ -83,62 +84,30 @@ commands = deps = {[testenv]deps} -rhttp://git.openstack.org/cgit/openstack/openstack-ansible-tests/plain/test-ansible-deps.txt -commands = - {[testenv:tests_clone]commands} - bash -c "{toxinidir}/tests/common/test-ansible-env-prep.sh" [testenv:ansible-syntax] deps = {[testenv:ansible]deps} commands = - {[testenv:ansible]commands} - ansible-playbook -i {toxinidir}/tests/inventory \ - --syntax-check \ - --list-tasks \ - {toxinidir}/tests/test.yml + {[testenv:tests_clone]commands} + bash -c "{toxinidir}/tests/common/test-ansible-syntax.sh" [testenv:ansible-lint] deps = {[testenv:ansible]deps} commands = - {[testenv:ansible]commands} - ansible-lint {toxinidir} - - -[testenv:func_base] -# NOTE(odyssey4me): this target does not use constraints because -# it doesn't work in OpenStack-CI yet. Once that's fixed, we can -# drop the install_command. -install_command = - pip install -U --force-reinstall {opts} {packages} - - -[testenv:func_logs] -commands = - bash -c "{toxinidir}/tests/common/test-log-collect.sh" + {[testenv:tests_clone]commands} + bash -c "{toxinidir}/tests/common/test-ansible-lint.sh" [testenv:functional] -# Ignore_errors is set to true so that the logs are collected at the -# end of the run. This will not produce a false positive. Any -# exception will be mark the run as failed and exit 1 after all of -# the commands have been iterated through. -ignore_errors = True -# NOTE(odyssey4me): this target does not use constraints because -# it doesn't work in OpenStack-CI yet. Once that's fixed, we can -# drop the install_command. -install_command = - {[testenv:func_base]install_command} deps = {[testenv:ansible]deps} commands = - {[testenv:ansible]commands} - ansible-playbook -i {toxinidir}/tests/inventory \ - -e @{toxinidir}/tests/os_magnum-overrides.yml \ - {toxinidir}/tests/test.yml -vvvv - {[testenv:func_logs]commands} + {[testenv:tests_clone]commands} + bash -c "{toxinidir}/tests/common/test-ansible-functional.sh" [testenv:linters]