Skip to content

Commit 4815e1b

Browse files
committed
ci: Fix test command to fail properly on test failure
1 parent 46bff4b commit 4815e1b

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

.github/workflows/golang-bindings.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272

7373
- name: Start sqld server
7474
run: |
75-
RUST_LOG=trace ./target/release/sqld --http-listen-addr 127.0.0.1:8080 --grpc-listen-addr 127.0.0.1:5001 &
75+
./target/release/sqld --http-listen-addr 127.0.0.1:8080 --grpc-listen-addr 127.0.0.1:5001 &
7676
# Wait for server to be ready
7777
for i in {1..30}; do
7878
if curl -s http://127.0.0.1:8080/health > /dev/null 2>&1; then
@@ -87,7 +87,6 @@ jobs:
8787
8888
- name: Run go-libsql tests
8989
working-directory: go-libsql
90-
run: go test -v -count=1 -run TestAutoSync ./... 2>&1 | head -100
90+
run: go test -v -count=1 ./...
9191
env:
9292
LIBSQL_PRIMARY_URL: "http://127.0.0.1:8080"
93-
RUST_LOG: "trace"

0 commit comments

Comments
 (0)