diff options
| author | Paul Buetow <paul@buetow.org> | 2025-05-20 09:38:50 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2025-05-20 09:38:50 +0300 |
| commit | 70d554fb641fbd2b09833316c66468f99e3f41ba (patch) | |
| tree | 2768b5a235791d8009721000289b32a01bd4fd93 /Makefile | |
| parent | f27848b812aecd0bb0aecb100119c0ab71b5fbeb (diff) | |
fix unit tests
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -56,17 +56,17 @@ prof: .PHONY: test test: $(GO) clean -testcache - $(GO) test ./... -v + $(GO) test ./... -v -failfast .PHONY: test_specific test_specific: $(GO) clean -testcache - $(GO) test ./... -run ^$(TEST_NAME)$$ -v + $(GO) test ./... -run ^$(TEST_NAME)$$ -v -failfast .PHONY: test_foo test_foo: $(GO) clean -testcache - $(GO) test ./internal/ -v + $(GO) test ./internal/ -v -failfast .PHONY: bench bench: |
