Skip to content

Commit

Permalink
Merge pull request #3 from mcattamoredhat/test-branch
Browse files Browse the repository at this point in the history
test: comment all tests to check mcattamo test case duration
  • Loading branch information
mcattamoredhat authored Apr 19, 2024
2 parents 20881bc + 0efccf6 commit cd9f9ba
Show file tree
Hide file tree
Showing 3 changed files with 84 additions and 84 deletions.
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

0 comments on commit cd9f9ba

Please sign in to comment.