From 8f73ced037a08727865e3f4e4e6d0b437e6f10df Mon Sep 17 00:00:00 2001 From: Valentin Maerten Date: Mon, 30 Dec 2024 11:50:57 +0100 Subject: [PATCH] fix: missing t.Parallel in some tests --- task_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/task_test.go b/task_test.go index c54424e7..a43b79a2 100644 --- a/task_test.go +++ b/task_test.go @@ -1670,6 +1670,7 @@ func TestIncludesInterpolation(t *testing.T) { // nolint:paralleltest // cannot } func TestIncludesWithExclude(t *testing.T) { + t.Parallel() var buff bytes.Buffer e := task.Executor{ Dir: "testdata/includes_with_excludes",