Don't include integration tests in "just test" on Windows

This allows running "just check" on Windows, it just doesn't check quite
as much.
This commit is contained in:
Stefan Haller 2026-06-16 13:38:49 +02:00
parent fcce4de6fc
commit 643f169be2

View file

@ -22,8 +22,13 @@ unit-test:
go test ./... -short
# Run both unit tests and integration tests.
[unix]
test: unit-test e2e-all
# On Windows, integration tests are not supported right now
[windows]
test: unit-test
# Generate all our auto-generated files (test list, cheatsheets, json schema, maybe other things in the future)
generate:
go generate ./...