Skip to content

Commit d4ca58f

Browse files
Fix Go e2e tests not running in CI (#47)
* Fix Go e2e tests not running in CI Add ./... to go test commands to include tests in subdirectories like go/e2e/ * Simplify to single go test command * Remove global timeout, rely on per-test 60s timeouts
1 parent 35d3710 commit d4ca58f

File tree

1 file changed

+1
-14
lines changed

1 file changed

+1
-14
lines changed

go/test.sh

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -43,20 +43,7 @@ cd "$(dirname "$0")"
4343
echo "=== Running Go SDK E2E Tests ==="
4444
echo
4545

46-
echo "Running client tests..."
47-
go test -v -run TestClient -timeout 60s
48-
echo
49-
50-
echo "Running session tests..."
51-
go test -v -run TestSession -timeout 60s
52-
echo
46+
go test -v ./...
5347

54-
echo "Running integration tests..."
55-
go test -v -run TestIntegration -timeout 60s
5648
echo
57-
58-
echo "Running helpers tests..."
59-
go test -v -run TestHelpers -timeout 90s
60-
echo
61-
6249
echo "✅ All tests passed!"

0 commit comments

Comments
 (0)