Skip to content

Commit 1d7b2e6

Browse files
committed
Add ignore list for avoid hitting kernel bug
1 parent 7841f3a commit 1d7b2e6

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

.automation.conf/config.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,11 @@ if [ ! -z ${KAYOBE_ENVIRONMENT:+x} ]; then
2525
if [[ "$KAYOBE_ENVIRONMENT" =~ "aio" ]]; then
2626
# Seem to get servers failing to spawn with higher concurrency
2727
export TEMPEST_CONCURRENCY=1
28+
# NOTE(seunghun1ee): Current Ubuntu Noble kernel 6.8.0-57-generic has a bug
29+
# https://bugs.launchpad.net/ubuntu/+source/linux-meta-oracle-6.8/+bug/2104178
30+
# which blocks attaching interfaces to neutron routers in OVS system.
31+
# Ignoring sets of tests failing because of this until kernel fix is released.
32+
export KAYOBE_AUTOMATION_TEMPEST_SKIPLIST=ci-aio-tempest-refstack
2833
fi
2934

3035
if [[ "$KAYOBE_ENVIRONMENT" =~ "ci-multinode" ]]; then
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
tempest.api.compute.servers.test_create_server.ServersTestJSON.test_host_name_is_same_as_server_name[id-ac1ad47f-984b-4441-9274-c9079b7a0666]
2+
tempest.api.compute.servers.test_create_server.ServersTestJSON.test_verify_created_server_vcpus[id-cbc0f52f-05aa-492b-bdc1-84b575ca294b]
3+
tempest.api.compute.servers.test_create_server.ServersTestManualDisk.test_host_name_is_same_as_server_name[id-ac1ad47f-984b-4441-9274-c9079b7a0666]
4+
tempest.api.compute.servers.test_create_server.ServersTestManualDisk.test_verify_created_server_vcpus[id-cbc0f52f-05aa-492b-bdc1-84b575ca294b]
5+
tempest.api.compute.servers.test_server_actions.ServerActionsTestJSON.test_lock_unlock_server[id-80a8094c-211e-440a-ab88-9e59d556c7ee]
6+
tempest.api.compute.servers.test_server_actions.ServerActionsTestJSON.test_reboot_server_hard[id-2cb1baf6-ac8d-4429-bf0d-ba8a0ba53e32,smoke]
7+
tempest.api.compute.servers.test_server_actions.ServerActionsTestJSON.test_rebuild_server[id-aaa6cdf3-55a7-461a-add9-1c8596b9a07c]
8+
tempest.api.compute.servers.test_server_actions.ServerActionsTestJSON.test_stop_start_server[id-af8eafd4-38a7-4a4b-bdbc-75145a580560]

0 commit comments

Comments
 (0)