Skip to content

Commit 3bd5bf2

Browse files
committed
fix(deisctl): avoid stdout issues in tests
Some unit tests will fail with GOMAXPROCS > 1, so this change allows `make test-unit` to pass until there is a proper fix.
1 parent 30fefce commit 3bd5bf2

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

deisctl/Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,5 @@ test-style:
4141
$(GOLINT) ./...
4242

4343
test-unit:
44-
$(GOTEST) ./...
44+
# TODO: remove GOMAXPROCS=1 when concurrent stdout issues are fixed
45+
GOMAXPROCS=1 $(GOTEST) ./...

0 commit comments

Comments
 (0)