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

Ginkgo parallel test node CI timeout debugging #3792

Closed
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 Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ GINKGO_FLAGS_ALL = $(GINKGO_TEST_ARGS) -randomizeAllSpecs -slowSpecThreshold=$(S
# Flags for tests that must not be run in parallel.
GINKGO_FLAGS_SERIAL = $(GINKGO_FLAGS_ALL) -nodes=1
# Flags for tests that may be run in parallel
GINKGO_FLAGS=$(GINKGO_FLAGS_ALL) -nodes=$(TEST_EXEC_NODES)
GINKGO_FLAGS=$(GINKGO_FLAGS_ALL) -debug -nodes=$(TEST_EXEC_NODES)


default: bin
Expand Down
14 changes: 8 additions & 6 deletions scripts/openshiftci-presubmit-all-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,15 @@ elif [ "${ARCH}" == "ppc64le" ]; then
make test-e2e-beta
else
# Integration tests
make test-integration
make test-integration-devfile
make test-cmd-login-logout
make test-cmd-project
make test-operator-hub
# time make test-integration
# time GINKGO_TEST_ARGS=-v make test-integration-devfile
GINKGO_TEST_ARGS=-v make test-cmd-devfile-watch
GINKGO_TEST_ARGS=-v make test-cmd-devfile-log
#time make test-cmd-login-logout
#time make test-cmd-project
#time make test-operator-hub
# E2e tests
make test-e2e-all
#time make test-e2e-all
fi

odo logout