File tree Expand file tree Collapse file tree 5 files changed +10
-4
lines changed
Expand file tree Collapse file tree 5 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ require (
5454 github.com/jgautheron/goconst v1.7.1 // indirect
5555 github.com/kevinburke/ssh_config v1.2.0 // indirect
5656 github.com/kisielk/errcheck v1.8.0 // indirect
57- github.com/kunwardeep/paralleltest v1.0.10 // indirect
57+ github.com/kunwardeep/paralleltest v1.0.15 // indirect
5858 github.com/magiconair/properties v1.8.7 // indirect
5959 github.com/mattn/go-colorable v0.1.14 // indirect
6060 github.com/mattn/go-isatty v0.0.20 // indirect
Original file line number Diff line number Diff line change @@ -118,8 +118,8 @@ github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=
118118github.com/kr/text v0.1.0 /go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI =
119119github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY =
120120github.com/kr/text v0.2.0 /go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE =
121- github.com/kunwardeep/paralleltest v1.0.10 h1:wrodoaKYzS2mdNVnc4/w31YaXFtsc21PCTdvWJ/lDDs =
122- github.com/kunwardeep/paralleltest v1.0.10 /go.mod h1:2C7s65hONVqY7Q5Efj5aLzRCNLjw2h4eMc9EcypGjcY =
121+ github.com/kunwardeep/paralleltest v1.0.15 h1:ZMk4Qt306tHIgKISHWFJAO1IDQJLc6uDyJMLyncOb6w =
122+ github.com/kunwardeep/paralleltest v1.0.15 /go.mod h1:di4moFqtfz3ToSKxhNjhOZL+696QtJGCFe132CbBLGk =
123123github.com/liamg/memoryfs v1.6.0 h1:jAFec2HI1PgMTem5gR7UT8zi9u4BfG5jorCRlLH06W8 =
124124github.com/liamg/memoryfs v1.6.0 /go.mod h1:z7mfqXFQS8eSeBBsFjYLlxYRMRyiPktytvYCYTb3BSk =
125125github.com/magiconair/properties v1.8.7 h1:IeQXZAiQcpL9mgcAe1Nu6cX9LLw6ExEHKjN0VQdvPDY =
Original file line number Diff line number Diff line change @@ -136,6 +136,8 @@ func TestActionsInManifest(t *testing.T) {
136136
137137 for name , tt := range testCases {
138138 t .Run (name , func (t * testing.T ) {
139+ t .Parallel ()
140+
139141 if _ , err := actionsInManifest (tt .manifest ); err == nil {
140142 t .Fatal ("Unexpected success" )
141143 }
@@ -441,6 +443,8 @@ func TestActionsInWorkflows(t *testing.T) {
441443
442444 for name , tt := range testCases {
443445 t .Run (name , func (t * testing.T ) {
446+ t .Parallel ()
447+
444448 if _ , err := actionsInWorkflows (tt .in ); err == nil {
445449 t .Fatal ("Unexpected success" )
446450 }
Original file line number Diff line number Diff line change @@ -112,6 +112,8 @@ func TestDecodeV1(t *testing.T) {
112112
113113 for name , tt := range testCases {
114114 t .Run (name , func (t * testing.T ) {
115+ t .Parallel ()
116+
115117 got , err := decodeV1 (tt .content )
116118 if err != nil {
117119 t .Fatalf ("Unexpected error: %+v" , err )
Original file line number Diff line number Diff line change @@ -335,7 +335,7 @@ func TaskVet(t *T) error {
335335 "go run github.com/gordonklaus/ineffassign ./..." ,
336336 "go run github.com/jgautheron/goconst/cmd/goconst -set-exit-status ./..." ,
337337 "go run github.com/kisielk/errcheck ./..." ,
338- "go run github.com/kunwardeep/paralleltest -ignoreloopVar ./..." ,
338+ "go run github.com/kunwardeep/paralleltest -ignoreloopVar -checkcleanup ./..." ,
339339 "go run github.com/mdempsky/unconvert ./..." ,
340340 "go run github.com/nishanths/exhaustive/cmd/exhaustive ./..." ,
341341 "go run github.com/polyfloyd/go-errorlint -asserts ./..." ,
You can’t perform that action at this time.
0 commit comments