Skip to content

Commit

Permalink
Merge pull request #34 from aufi/debug-nightly-tests
Browse files Browse the repository at this point in the history
Enable DEBUG for test workflows
  • Loading branch information
aufi authored Sep 21, 2023
2 parents db84851 + c43802e commit 97be782
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 9 deletions.
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

0 comments on commit 97be782

Please sign in to comment.