Compare commits

...

4 Commits

Author SHA1 Message Date
Tomas Dabašinskas
3c9713a64e
Merge 74cf7151d9 into 57286c3887 2026-07-24 01:20:23 -04:00
Devin Dooley
57286c3887
Merge pull request #4873 from lissy93-forks/updates-laravel-phpcache-dir
Updates missing .phpunit.cache dir for newer laravel
2026-07-23 09:06:44 -07:00
Alicia Sykes
90db345f0d Updates missing .phpunit.cache dir for newer laravel 2026-06-07 21:00:00 +01:00
Tomas Dabašinskas
74cf7151d9
fix(go-gitignore): prevent coverage.go files from being excluded
The current `coverage.*` pattern includes `*.go` files as well. If you use `go vendor`, this causes the following files to be excluded:

- `vendor/golang.org/x/text/internal/language/coverage.go`
- `vendor/golang.org/x/text/language/coverage.go`

This becomes a nightmare to troubleshoot why the local build works, yet a CI fails (as the files were not committed).

Adding `!coverage.go` ensure that `*.go` files do not get accidentally excluded.
2025-12-24 11:45:50 +02:00
2 changed files with 2 additions and 0 deletions

View File

@ -14,6 +14,7 @@
# Code coverage profiles and other test artifacts
*.out
coverage.*
!coverage.go
*.coverprofile
profile.cov

View File

@ -21,6 +21,7 @@ Homestead.yaml
Homestead.json
/.vagrant
.phpunit.result.cache
/.phpunit.cache
/public/build
/storage/pail