mirror of
https://github.com/jesseduffield/lazygit.git
synced 2026-09-10 15:46:26 -04:00
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:
parent
fcce4de6fc
commit
643f169be2
5
justfile
5
justfile
|
|
@ -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 ./...
|
||||
|
|
|
|||
Loading…
Reference in a new issue