Remove commands that wont be implemented for v3-alpha1 (#5433)

* Remove odo staorage commands

* Remove "odo service" + "odo catalog * service" commands

* Remove odo link/unlink commands

* Remove related integration tests

* Remove application concept

* fix rebase

* fix test

* Remove config command

* Remove env command

* Remove application package

* Remove config package

* Move odogenerator and unions packages into kclient

* Move notify package to cli/version

* Fix script mockgen

* Remove odo debug command oand debug package

* Remove odo component describe/exec/log/status/test

* Remove operator-hub tests from IBM tests

* Remove operator hub tests from CI

* Fix e2e tests
This commit is contained in:
Philippe Martin
2022-02-07 05:42:15 +01:00
committed by GitHub
parent 97e211b715
commit 850c7cd723
124 changed files with 51 additions and 11652 deletions

View File

@@ -13,7 +13,6 @@ SCRIPT_IDENTITY=${SCRIPT_IDENTITY:-"def-id"}
# Integration tests
shout "| Running integration Tests on MiniKube"
make test-operator-hub
make test-cmd-project
make test-integration-devfile

View File

@@ -27,10 +27,6 @@ mockgen -source=pkg/odo/cmdline/cmdline.go \
-package cmdline \
-destination pkg/odo/cmdline/mock.go
mockgen -source=pkg/application/application.go \
-package application \
-destination pkg/application/mock.go
mockgen -source=pkg/project/project.go \
-package project \
-destination pkg/project/mock.go

View File

@@ -31,7 +31,6 @@ make test-integration || error=true
make test-integration-devfile || error=true
make test-cmd-login-logout || error=true
make test-cmd-project || error=true
make test-operator-hub || error=true
# E2e tests
make test-e2e-all || error=true

View File

@@ -53,7 +53,6 @@ else
make test-integration-devfile || error=true
make test-cmd-login-logout || error=true
make test-cmd-project || error=true
make test-operator-hub || error=true
# E2e tests
make test-e2e-all || error=true

View File

@@ -39,7 +39,6 @@ if [ "${ARCH}" == "s390x" ]; then
make test-integration-devfile
make test-cmd-login-logout
make test-cmd-project
make test-operator-hub
# E2e tests
make test-e2e-all
elif [ "${ARCH}" == "ppc64le" ]; then
@@ -50,14 +49,12 @@ elif [ "${ARCH}" == "ppc64le" ]; then
make test-cmd-project
# E2e tests
make test-e2e-all
make test-operator-hub
else
# Integration tests
make test-integration || error=true
make test-integration-devfile || error=true
make test-cmd-login-logout || error=true
make test-cmd-project || error=true
make test-operator-hub || error=true
# E2e tests
make test-e2e-all || error=true

View File

@@ -69,7 +69,6 @@ git clone $REPO_URL odo && cd $WORKING_DIR/odo && git checkout "v$VERSION"
#Run tests
make test-integration-devfile
make test-integration
make test-operator-hub
make test-e2e-all
make test-cmd-project

View File

@@ -73,7 +73,6 @@ set -x
# # Integration tests
shout "Running integration Tests"
make test-operator-hub || error=true
make test-integration || error=true
make test-integration-devfile || error=true
make test-cmd-login-logout || error=true