@@ -152,31 +152,31 @@ lint: lint-imports
152152# # test-unit: Run unit tests.
153153test-unit :
154154 @echo " --> Running unit tests"
155- @go test $(VERBOSE ) -covermode=atomic -coverprofile=coverage.txt ` go list ./... | grep -v nodebuilder/tests` $(LOG_AND_FILTER )
155+ @go test $(VERBOSE ) -tags=fibre - covermode=atomic -coverprofile=coverage.txt ` go list ./... | grep -v nodebuilder/tests` $(LOG_AND_FILTER )
156156.PHONY : test-unit
157157
158158# # test-unit-fast: Run unit tests without coverage instrumentation.
159159test-unit-fast :
160160 @echo " --> Running unit tests"
161- @go test $(VERBOSE ) ` go list ./... | grep -v nodebuilder/tests` $(LOG_AND_FILTER )
161+ @go test $(VERBOSE ) -tags=fibre ` go list ./... | grep -v nodebuilder/tests` $(LOG_AND_FILTER )
162162.PHONY : test-unit-fast
163163
164164# # test-unit-race: Run unit tests with data race detector.
165165test-unit-race :
166166 @echo " --> Running unit tests with data race detector"
167- @go test $(VERBOSE ) -race -covermode=atomic -coverprofile=coverage.txt ` go list ./... | grep -v nodebuilder/tests` $(LOG_AND_FILTER )
167+ @go test $(VERBOSE ) -tags=fibre - race -covermode=atomic -coverprofile=coverage.txt ` go list ./... | grep -v nodebuilder/tests` $(LOG_AND_FILTER )
168168.PHONY : test-unit-race
169169
170170# # test-integration: Run integration tests located in nodebuilder/tests.
171171test-integration :
172172 @echo " --> Running integrations tests $( VERBOSE) -tags=$( TAGS) $( INTEGRATION_RUN_LENGTH) "
173- @go test $(VERBOSE ) -timeout=20m -tags=$(TAGS ) $(INTEGRATION_RUN_LENGTH ) ./nodebuilder/tests
173+ @go test $(VERBOSE ) -timeout=20m -tags=$(TAGS ) ,fibre $(INTEGRATION_RUN_LENGTH ) ./nodebuilder/tests
174174.PHONY : test-integration
175175
176176# # test-integration-race: Run integration tests with data race detector located in nodebuilder/tests.
177177test-integration-race :
178178 @echo " --> Running integration tests with data race detector -tags=$( TAGS) "
179- @go test -race -tags=$(TAGS ) ./nodebuilder/tests
179+ @go test -race -tags=$(TAGS ) ,fibre ./nodebuilder/tests
180180.PHONY : test-integration-race
181181
182182# # test-blob: Run blob module tests via Tastora framework.
0 commit comments