Reorganized test file directory structure (#5537)

* Rebased was required

* Replicated changes to  openshiftci related scripts to avoid test failure
This commit is contained in:
Rodolfo Napoles
2022-03-15 23:42:11 -06:00
committed by GitHub
parent 070b8776c1
commit 83f26da94d
9 changed files with 12 additions and 7 deletions

View File

@@ -29,10 +29,12 @@ oc whoami
# Integration tests
make test-integration || error=true
make test-integration-devfile || error=true
make test-integration-interactive || error=true
make test-cmd-login-logout || error=true
make test-cmd-project || error=true
# Interactive tests
make test-interactive || error=true
# E2e tests
make test-e2e-all || error=true

View File

@@ -52,11 +52,14 @@ elif [ "${ARCH}" == "ppc64le" ]; then
else
# Integration tests
make test-integration || error=true
make test-integration-interactive || error=true
make test-interactive || error=true
make test-integration-devfile || error=true
make test-cmd-login-logout || error=true
make test-cmd-project || error=true
# Interactive tests
make test-interactive || error=true
# E2e tests
make test-e2e-all || error=true