Skip to content

Commit

Permalink
multi kind test 7
Browse files Browse the repository at this point in the history
  • Loading branch information
bartam1 committed Jul 25, 2023
1 parent f655a7d commit 022d040
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 10 deletions.
24 changes: 15 additions & 9 deletions .github/workflows/e2e-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,18 +57,24 @@ jobs:
make test-e2e-parallel
- name: Publish Test Results
uses: EnricoMi/publish-unit-test-result-action@v2
uses: EnricoMi/publish-unit-test-result-action/composite@master
if: always()
with:
json_file: e2e_result.json
commit: ${{ github.event.workflow_run.head_sha }}
report_individual_runs: "true"
check_name: "E2E test report"
large_files: true
comment_mode: off
files: |
tests/e2e/reports/e2e_*.xml
- name: E2E Test Report
uses: dorny/test-reporter@v1
if: always()
with:
name: E2E tests
path: "tests/e2e/reports/e2e_*.xml"
reporter: jest-junit
fail-on-error: true
# - name: E2E Test Report
# uses: dorny/test-reporter@v1
# if: always()
# with:
# name: E2E tests
# path: "tests/e2e/reports/e2e_*.xml"
# reporter: jest-junit
# fail-on-error: true

2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ test-e2e: bin/ginkgo

# Run e2e tests parallel
test-e2e-parallel: bin/ginkgo
ginkgo --procs 3 --tags e2e tests/e2e
ginkgo -v --procs 3 --tags e2e tests/e2e

# Compile test binary for debugging
build-e2e-debug-binary:
Expand Down

0 comments on commit 022d040

Please sign in to comment.