Skip to content

Commit 47af6f8

Browse files
authored
Merge pull request #2118 from dolthub/daylon/update-timeouts
[no-release-notes] Prolonged testing timeouts
2 parents 83fffaf + 1a848e1 commit 47af6f8

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/test-enginetests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ jobs:
4040
shell: bash
4141
- name: Test (*nix)
4242
if: ${{ matrix.platform != 'windows-latest' }}
43-
run: go test $(go list ./testing/go/enginetest)
43+
run: go test --timeout=20m $(go list ./testing/go/enginetest)
4444
- name: Test (Windows)
4545
if: ${{ matrix.platform == 'windows-latest' }}
4646
shell: msys2 {0}
47-
run: go.exe test $(go.exe list ./testing/go/enginetest)
47+
run: go.exe test --timeout=20m $(go.exe list ./testing/go/enginetest)

.github/workflows/test-import-dumps.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,13 @@ jobs:
4747
- name: Test (MacOS)
4848
if: ${{ matrix.platform == 'macos-latest' }}
4949
working-directory: ./testing/go
50-
run: go test -run TestImportingDumps .
50+
run: go test --timeout=30m -run TestImportingDumps .
5151
- name: Test (Windows)
5252
if: ${{ matrix.platform == 'windows-latest' }}
5353
working-directory: ./testing/go
5454
shell: msys2 {0}
55-
run: go.exe test -run TestImportingDumps .
55+
run: go.exe test --timeout=30m -run TestImportingDumps .
5656
- name: Test (Linux)
5757
if: ${{ matrix.platform == 'ubuntu-latest' }}
5858
working-directory: ./testing/go
59-
run: go test -run TestImportingDumps .
59+
run: go test --timeout=30m -run TestImportingDumps .

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,12 @@ jobs:
4444
postgresql-version: 15
4545
- name: Test (MacOS)
4646
if: ${{ matrix.platform == 'macos-latest' }}
47-
run: go test -skip="TestReplication" $(go list ./... | grep -v enginetest)
47+
run: go test --timeout=20m -skip="TestReplication" $(go list ./... | grep -v enginetest)
4848
- name: Test (Windows)
4949
if: ${{ matrix.platform == 'windows-latest' }}
5050
shell: msys2 {0}
51-
run: go.exe test -skip="TestReplication" $(go.exe list ./... | grep -v enginetest)
51+
run: go.exe test --timeout=20m -skip="TestReplication" $(go.exe list ./... | grep -v enginetest)
5252
- name: Test (Linux)
5353
if: ${{ matrix.platform == 'ubuntu-latest' }}
5454
# Enginetest harness breaks with race testing, not sure why yet
55-
run: go test -race -skip="TestReplication" $(go list ./... | grep -v enginetest)
55+
run: go test --timeout=20m -race -skip="TestReplication" $(go list ./... | grep -v enginetest)

0 commit comments

Comments
 (0)