this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

make: clear testcache for test-interop

These are slower tests, against other-language services, and we should
run all tests every time, for now.

This is slower than strictly necessary, but, eg, making a change to the
docker-compose setup and then having tests pass (when they would
actually fail if run) is very bad, so being conservative in this
direction.

+1 -1
+1 -1
Makefile
··· 35 35 36 36 .PHONY: test-interop 37 37 test-interop: ## Run tests, including local interop (requires services running) 38 - go test -tags=localinterop ./... 38 + go clean -testcache && go test -tags=localinterop ./... 39 39 40 40 .PHONY: coverage-html 41 41 coverage-html: ## Generate test coverage report and open in browser