File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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)
Original file line number Diff line number Diff 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 .
Original file line number Diff line number Diff 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)
You can’t perform that action at this time.
0 commit comments