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

Enable DEBUG for test workflows #34

Merged
merged 2 commits into from
Sep 21, 2023
Merged
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 .github/workflows/main-tier0.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ jobs:
- name: Install dependencies
run: |
go install github.com/onsi/ginkgo/v2/ginkgo
- run: HUB_BASE_URL="http://$(minikube ip)/hub" make test-tier0
- run: HUB_BASE_URL="http://$(minikube ip)/hub" DEBUG=1 make test-tier0
2 changes: 1 addition & 1 deletion .github/workflows/main-tier1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ jobs:
- name: Install dependencies
run: |
go install github.com/onsi/ginkgo/v2/ginkgo
- run: HUB_BASE_URL="http://$(minikube ip)/hub" make test-tier1
- run: HUB_BASE_URL="http://$(minikube ip)/hub" DEBUG=1 make test-tier1
2 changes: 1 addition & 1 deletion .github/workflows/main-tier2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ jobs:
- name: Install dependencies
run: |
go install github.com/onsi/ginkgo/v2/ginkgo
- run: HUB_BASE_URL="http://$(minikube ip)/hub" make test-tier2
- run: HUB_BASE_URL="http://$(minikube ip)/hub" DEBUG=1 make test-tier2
2 changes: 1 addition & 1 deletion .github/workflows/nightly-tier0.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ jobs:
- name: Install dependencies
run: |
go install github.com/onsi/ginkgo/v2/ginkgo
- run: HUB_BASE_URL="http://$(minikube ip)/hub" make test-tier0
- run: HUB_BASE_URL="http://$(minikube ip)/hub" DEBUG=1 make test-tier0
2 changes: 1 addition & 1 deletion .github/workflows/nightly-tier1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Install dependencies
run: |
go install github.com/onsi/ginkgo/v2/ginkgo
- run: HUB_BASE_URL="http://$(minikube ip)/hub" make test-tier1
- run: HUB_BASE_URL="http://$(minikube ip)/hub" DEBUG=1 make test-tier1
- run: HUB_BASE_URL="http://$(minikube ip)/hub" make test-jira
env:
JIRA_USERNAME: ${{ secrets.JIRA_USERNAME }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly-tier2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ jobs:
- name: Install dependencies
run: |
go install github.com/onsi/ginkgo/v2/ginkgo
- run: HUB_BASE_URL="http://$(minikube ip)/hub" make test-tier2
- run: HUB_BASE_URL="http://$(minikube ip)/hub" DEBUG=1 make test-tier2
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,14 +83,18 @@ $ make test-tier2

## Test execution options

#### PARALLEL
### DEBUG

For parallel test execution, set ```export PARALLEL=1```.
For debug output like printing full analysis results, set ```export DEBUG=1```.

#### KEEP
### KEEP

For keep data created by test e.g. for debugging purposes, set ```export KEEP=1```.

### PARALLEL

For parallel test execution, set ```export PARALLEL=1```.

## Konveyor CI status

See https://github.com/konveyor/ci
Expand Down
Loading