diff --git a/README.md b/README.md index a1a54a188..35e80623c 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,6 @@ scenario](#All-In-One). | horizon | | | X | X | | ironic | | X | | | | zaqar | | X | | | -| mistral | | | X | | | ceph | X | | | | | mongodb | | X | | | diff --git a/fixtures/scenario003.pp b/fixtures/scenario003.pp index 8eecefbbb..f3c77d5b5 100644 --- a/fixtures/scenario003.pp +++ b/fixtures/scenario003.pp @@ -26,7 +26,8 @@ case $::osfamily { 'RedHat': { $ipv6 = true $sahara_enabled = true - $mistral_enabled = true + # enable when we figure why mistral tempest tests are so unstable + $mistral_enabled = false } default: { fail("Unsupported osfamily (${::osfamily})") @@ -50,7 +51,8 @@ include ::openstack_integration::nova include ::openstack_integration::trove include ::openstack_integration::horizon include ::openstack_integration::heat -include ::openstack_integration::mistral +# enable when we figure why mistral tempest tests are so unstable +# include ::openstack_integration::mistral if $sahara_enabled { include ::openstack_integration::sahara } diff --git a/run_tests.sh b/run_tests.sh index 6a67a7469..60e13ce68 100755 --- a/run_tests.sh +++ b/run_tests.sh @@ -169,9 +169,6 @@ TESTS="${TESTS} api.baremetal.admin.test_drivers" # Zaqar TESTS="${TESTS} TestManageQueue" -# Mistral -TESTS="${TESTS} test_mistral_basic_v2.ExecutionTestsV2.test_get_list_executions" - cd /tmp/openstack/tempest tox -eall-plugin -- --concurrency=2 $TESTS RESULT=$?