Skip to content

Commit 2c19470

Browse files
committed
debug in tests...
1 parent 04f439a commit 2c19470

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/chaos-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
run: go install gotest.tools/gotestsum@latest
3838

3939
- name: Run chaos tests
40-
run: go vet ./... && gotestsum --format github-action -- -v -race -count=1 -timeout=30m ./...
40+
run: go vet ./... && gotestsum --format github-action -- -v -race -count=1 ./...
4141
working-directory: ./chaos_tests
4242
env:
4343
PGPASSWORD: a!b@c$d()e*_,/:;=?@ff[]22

chaos_tests/chaos_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ func setupDBOS(t *testing.T) dbos.DBOSContext {
170170
dbosCtx, err := dbos.NewDBOSContext(context.Background(), dbos.Config{
171171
DatabaseURL: databaseURL,
172172
AppName: "chaos-test",
173-
Logger: slog.New(slog.NewTextHandler(os.Stdout, &slog.HandlerOptions{Level: slog.LevelInfo})),
173+
Logger: slog.New(slog.NewTextHandler(os.Stdout, &slog.HandlerOptions{Level: slog.LevelDebug})),
174174
})
175175
require.NoError(t, err)
176176
require.NotNil(t, dbosCtx)

0 commit comments

Comments
 (0)