Skip to content

Commit

Permalink
fix: re-disable tparallel for now
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeTurki committed Jan 2, 2025
1 parent a05a27d commit 6388744
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/.golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ linters:
- tenv # tenv is analyzer that detects using os.Setenv instead of t.Setenv since Go1.17
- testpackage # linter that makes you use a separate _test package
- thelper # thelper detects golang test helpers without t.Helper() call and checks the consistency of test helpers
- tparallel # tparallel detects inappropriate usage of t.Parallel() method in your Go test codes
- typecheck # Like the front-end of a Go compiler, parses and type-checks Go code
- unconvert # Remove unnecessary type conversions
- unparam # Reports unused function parameters
Expand All @@ -107,6 +106,7 @@ linters:
- promlinter # Check Prometheus metrics naming via promlint
- rowserrcheck # checks whether Err of rows is checked successfully
- sqlclosecheck # Checks that sql.Rows and sql.Stmt are closed.
- tparallel # tparallel detects inappropriate usage of t.Parallel() method in your Go test codes
- wrapcheck # Checks that errors returned from external packages are wrapped

issues:
Expand Down

0 comments on commit 6388744

Please sign in to comment.