Skip to content

Commit

Permalink
Revert "disable parallelism from our tests (#885)"
Browse files Browse the repository at this point in the history
This reverts commit 50939d7.
  • Loading branch information
brandonc committed May 23, 2024
1 parent 81e101d commit 027f614
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/actions/test-go-tfe/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ runs:
GO111MODULE: "on"
ENABLE_TFE: ${{ inputs.enterprise }}
run: |
gotestsum --junitfile summary.xml --format short-verbose -- -parallel=1 -timeout=29m -run "${{ steps.test_split.outputs.run }}"
gotestsum --junitfile summary.xml --format short-verbose -- -timeout=29m -run "${{ steps.test_split.outputs.run }}"
- name: Upload test artifacts
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ jobs:
fail-fast: false
matrix:
# If you adjust these parameters, also adjust the jrm input files on the "Merge reports" step below
total: [ 1 ]
index: [ 0 ]
total: [ 4 ]
index: [ 0, 1, 2, 3 ]

timeout-minutes: 30
steps:
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
run: npm install -g junit-report-merger

- name: Merge reports
run: jrm ./ci-summary.xml "junit-test-summary-0/*.xml"
run: jrm ./ci-summary.xml "junit-test-summary-0/*.xml" "junit-test-summary-1/*.xml" "junit-test-summary-2/*.xml" "junit-test-summary-3/*.xml"

- name: Upload test artifacts
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nightly-tfe-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ jobs:
strategy:
fail-fast: false
matrix:
total: [ 1 ]
index: [ 0 ]
total: [ 4 ]
index: [ 0, 1, 2, 3 ]

steps:
- name: terraform-cloud/outputs
Expand Down

0 comments on commit 027f614

Please sign in to comment.