We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f1943b commit a03b060Copy full SHA for a03b060
.github/workflows/tests.yml
@@ -59,7 +59,7 @@ jobs:
59
run: go mod download
60
61
- name: Run tests
62
- run: go test -v ./...
+ run: gotestsum --format github-action
63
working-directory: ./dbos
64
env:
65
PGPASSWORD: a!b@c$d()e*_,/:;=?@ff[]22
dbos/utils_test.go
@@ -18,7 +18,6 @@ func setupDBOS(t *testing.T) {
18
19
databaseURL := os.Getenv("DBOS_DATABASE_URL")
20
if databaseURL == "" {
21
- fmt.Println("DBOS_DATABASE_URL not set, using default: postgres://postgres:${PGPASSWORD}@localhost:5432/dbos?sslmode=disable")
22
password := url.QueryEscape(os.Getenv("PGPASSWORD"))
23
databaseURL = fmt.Sprintf("postgres://postgres:%s@localhost:5432/dbos?sslmode=disable", password)
24
}
0 commit comments