Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: comment all tests to check mcattamo test case duration #3

Merged
merged 1 commit into from
Apr 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Clone repository
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
with:
ref: b5c2d78c668f4f09b95d14af6a972fead048ac11 # updated to latest test branch hash
ref: test-branch
fetch-depth: 0

- name: Run the tests
Expand Down
118 changes: 59 additions & 59 deletions tmt/plans/edge-test.fmf
Original file line number Diff line number Diff line change
Expand Up @@ -14,62 +14,62 @@ provision:
environment+:
TEST_CASE: edge-mcattamo

/edge-commit:
summary: Test edge commit
environment+:
TEST_CASE: edge-commit

/edge-installer:
summary: Test edge installer image
environment+:
TEST_CASE: edge-installer

/edge-raw-image:
summary: Test edge raw image
environment+:
TEST_CASE: edge-raw-image

/edge-ami-image:
summary: Test edge ami image
environment+:
TEST_CASE: edge-ami-image

/edge-simplified-installer:
summary: Test edge simplified installer image
environment+:
TEST_CASE: edge-simplified-installer

/edge-minimal:
summary: Test edge minimal raw image
environment+:
TEST_CASE: edge-minimal

/edge-vsphere:
summary: Test edge vsphere image
environment+:
TEST_CASE: edge-vsphere

/edge-fdo-aio:
summary: Test edge with fdo aio service
environment+:
TEST_CASE: edge-fdo-aio

/edge-ignition:
summary: Test edge ignition feature
environment+:
TEST_CASE: edge-ignition

/edge-pulp:
summary: Test edge pulp feature
environment+:
TEST_CASE: edge-pulp

/edge-8to9:
summary: Test edge upgrade from 8 to 9
environment+:
TEST_CASE: edge-8to9

/edge-9to9:
summary: Test edge rebase from 9 to 9
environment+:
TEST_CASE: edge-9to9
# /edge-commit:
# summary: Test edge commit
# environment+:
# TEST_CASE: edge-commit
#
# /edge-installer:
# summary: Test edge installer image
# environment+:
# TEST_CASE: edge-installer
#
# /edge-raw-image:
# summary: Test edge raw image
# environment+:
# TEST_CASE: edge-raw-image
#
# /edge-ami-image:
# summary: Test edge ami image
# environment+:
# TEST_CASE: edge-ami-image
#
# /edge-simplified-installer:
# summary: Test edge simplified installer image
# environment+:
# TEST_CASE: edge-simplified-installer
#
# /edge-minimal:
# summary: Test edge minimal raw image
# environment+:
# TEST_CASE: edge-minimal
#
# /edge-vsphere:
# summary: Test edge vsphere image
# environment+:
# TEST_CASE: edge-vsphere
#
# /edge-fdo-aio:
# summary: Test edge with fdo aio service
# environment+:
# TEST_CASE: edge-fdo-aio
#
# /edge-ignition:
# summary: Test edge ignition feature
# environment+:
# TEST_CASE: edge-ignition
#
# /edge-pulp:
# summary: Test edge pulp feature
# environment+:
# TEST_CASE: edge-pulp
#
# /edge-8to9:
# summary: Test edge upgrade from 8 to 9
# environment+:
# TEST_CASE: edge-8to9
#
# /edge-9to9:
# summary: Test edge rebase from 9 to 9
# environment+:
# TEST_CASE: edge-9to9
48 changes: 24 additions & 24 deletions tmt/tests/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,30 +5,30 @@ cd ../../ || exit 1
function run_tests() {
if [ "$TEST_CASE" = "edge-mcattamo" ]; then
./ostree-mcattamo.sh
elif [ "$TEST_CASE" = "edge-commit" ]; then
./ostree.sh
elif [ "$TEST_CASE" = "edge-installer" ]; then
./ostree-installer.sh
elif [ "$TEST_CASE" = "edge-raw-image" ]; then
./ostree-raw-image.sh
elif [ "$TEST_CASE" = "edge-ami-image" ]; then
./ostree-ami-image.sh
elif [ "$TEST_CASE" = "edge-simplified-installer" ]; then
./ostree-simplified-installer.sh
elif [ "$TEST_CASE" = "edge-vsphere" ]; then
./ostree-vsphere.sh
elif [ "$TEST_CASE" = "edge-fdo-aio" ]; then
./ostree-fdo-aio.sh
elif [ "$TEST_CASE" = "edge-ignition" ]; then
./ostree-ignition.sh
elif [ "$TEST_CASE" = "edge-pulp" ]; then
./ostree-pulp.sh
elif [ "$TEST_CASE" = "edge-minimal" ]; then
./minimal-raw.sh
elif [ "$TEST_CASE" = "edge-8to9" ]; then
./ostree-8-to-9.sh
elif [ "$TEST_CASE" = "edge-9to9" ]; then
./ostree-9-to-9.sh
# elif [ "$TEST_CASE" = "edge-commit" ]; then
# ./ostree.sh
# elif [ "$TEST_CASE" = "edge-installer" ]; then
# ./ostree-installer.sh
# elif [ "$TEST_CASE" = "edge-raw-image" ]; then
# ./ostree-raw-image.sh
# elif [ "$TEST_CASE" = "edge-ami-image" ]; then
# ./ostree-ami-image.sh
# elif [ "$TEST_CASE" = "edge-simplified-installer" ]; then
# ./ostree-simplified-installer.sh
# elif [ "$TEST_CASE" = "edge-vsphere" ]; then
# ./ostree-vsphere.sh
# elif [ "$TEST_CASE" = "edge-fdo-aio" ]; then
# ./ostree-fdo-aio.sh
# elif [ "$TEST_CASE" = "edge-ignition" ]; then
# ./ostree-ignition.sh
# elif [ "$TEST_CASE" = "edge-pulp" ]; then
# ./ostree-pulp.sh
# elif [ "$TEST_CASE" = "edge-minimal" ]; then
# ./minimal-raw.sh
# elif [ "$TEST_CASE" = "edge-8to9" ]; then
# ./ostree-8-to-9.sh
# elif [ "$TEST_CASE" = "edge-9to9" ]; then
# ./ostree-9-to-9.sh
else
echo "Error: Test case $TEST_CASE not found!"
exit 1
Expand Down