From f3cffb50549f6288fb140b89fcb14d94b206bec8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dawid=20Wysoki=C5=84ski?= Date: Fri, 16 Sep 2022 14:55:21 +0000 Subject: [PATCH] run tests in parallel (#4) Reviewed-on: https://gitea.dwysokinski.me/Kichiyaki/chizap/pulls/4 --- logger_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/logger_test.go b/logger_test.go index 6e77447..a567288 100644 --- a/logger_test.go +++ b/logger_test.go @@ -71,6 +71,8 @@ func TestLogger(t *testing.T) { tt := tt t.Run(tt.name, func(t *testing.T) { + t.Parallel() + logger, obs := newLogger() rr := httptest.NewRecorder()