File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,7 +2,12 @@ version: 2
22
33secret :
44 ignored_paths :
5+ - .env.example
6+ - docker-compose.yml
7+ - scripts/loadmix/
58 - cmd/migrate/main_test.go
9+ - internal/auth/password_schemes_test.go
10+ - internal/auth/auth_test.go
611 ignored_matches :
712 - name : OAuth client secret used only in API documentation examples
813 match : 3K7mDzX434GbFm9YAePJ9FXQNjT6MF0U
Original file line number Diff line number Diff line change 4646 cache : true
4747
4848 - name : Run tests
49- run : go test -race -shuffle=on -coverprofile=coverage.out -covermode=atomic ./...
49+ # -pgo=off: the test build must not pick up cmd/api/default.pgo. PGO +
50+ # -race/-cover on the same package is a known source of linker
51+ # "fingerprint mismatch" flake; tests don't need profile-guided
52+ # optimization (it only shapes the production binary).
53+ run : go test -race -shuffle=on -pgo=off -coverprofile=coverage.out -covermode=atomic ./...
5054
5155 build :
5256 name : build
You can’t perform that action at this time.
0 commit comments