Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
leiicamundi committed Apr 11, 2024
1 parent 47e8bd9 commit 9ce7ebc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
8 changes: 1 addition & 7 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,18 +77,12 @@ jobs:
if: "!contains(github.event.pull_request.labels.*.name, 'testing-ci-not-necessary')"
run: echo "SHORT_GITHUB_SHA=$(git rev-parse --short HEAD)" >> "$GITHUB_ENV"

- name: Configure tests
if: "!contains(github.event.pull_request.labels.*.name, 'testing-ci-not-necessary')"
id: configure-tests
run: |
echo "TEST_CLUSTER_ID=${{ env.SHORT_GITHUB_SHA }}" >> "$GITHUB_ENV"
- name: Launch tests in parallel
if: "!contains(github.event.pull_request.labels.*.name, 'testing-ci-not-necessary')"
working-directory: ./test/src/
timeout-minutes: 125
run: |
export TEST_CLUSTER_ID="${{ env.TEST_CLUSTER_ID }}"
export TESTS_CLUSTER_ID="${{ env.SHORT_GITHUB_SHA }}"
export CLEAN_CLUSTER_AT_THE_END=true
go install gotest.tools/[email protected]
gotestsum --junitfile unit-tests.xml --format pkgname -- -v --timeout=120m -p 1 ./...
Expand Down
2 changes: 1 addition & 1 deletion test/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export AWS_REGION=eu-central-1
If you want to specify a non-random cluster UID:

```bash
export TEST_CLUSTER_ID="myTest"
export TESTS_CLUSTER_ID="myTest"
```

If you don't want to delete the resources at the end of the test:
Expand Down

0 comments on commit 9ce7ebc

Please sign in to comment.