diff --git a/.github/workflows/test-workflow.yaml b/.github/workflows/test-workflow.yaml index e3ce35b..a8d9eb9 100644 --- a/.github/workflows/test-workflow.yaml +++ b/.github/workflows/test-workflow.yaml @@ -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 diff --git a/tmt/plans/edge-test.fmf b/tmt/plans/edge-test.fmf index bd6c33c..fe5f253 100644 --- a/tmt/plans/edge-test.fmf +++ b/tmt/plans/edge-test.fmf @@ -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 diff --git a/tmt/tests/test.sh b/tmt/tests/test.sh index b08d902..9ab5ba3 100755 --- a/tmt/tests/test.sh +++ b/tmt/tests/test.sh @@ -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