Skip to content

Commit a03b060

Browse files
committed
output formatting
1 parent 2f1943b commit a03b060

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
run: go mod download
6060

6161
- name: Run tests
62-
run: go test -v ./...
62+
run: gotestsum --format github-action
6363
working-directory: ./dbos
6464
env:
6565
PGPASSWORD: a!b@c$d()e*_,/:;=?@ff[]22

dbos/utils_test.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ func setupDBOS(t *testing.T) {
1818

1919
databaseURL := os.Getenv("DBOS_DATABASE_URL")
2020
if databaseURL == "" {
21-
fmt.Println("DBOS_DATABASE_URL not set, using default: postgres://postgres:${PGPASSWORD}@localhost:5432/dbos?sslmode=disable")
2221
password := url.QueryEscape(os.Getenv("PGPASSWORD"))
2322
databaseURL = fmt.Sprintf("postgres://postgres:%s@localhost:5432/dbos?sslmode=disable", password)
2423
}

0 commit comments

Comments
 (0)