diff --git a/Makefile b/Makefile index 047d7b8..cf4efde 100644 --- a/Makefile +++ b/Makefile @@ -11,13 +11,13 @@ test-clean: go clean -testcache test: test-clean - go test -run=$(TEST) $(TEST_FLAGS) -json ./... | tparse --all --follow + go test -run=$(TEST) $(TEST_FLAGS) -json ./... | go run github.com/mfridman/tparse --all --follow test-rerun: test-clean go run github.com/goware/rerun/cmd/rerun -watch ./ -run 'make test' test-coverage: - go test -run=$(TEST) $(TEST_FLAGS) -cover -coverprofile=coverage.out -json ./... | tparse --all --follow + go test -run=$(TEST) $(TEST_FLAGS) -cover -coverprofile=coverage.out -json ./... | go run github.com/mfridman/tparse --all --follow test-coverage-inspect: test-coverage go tool cover -html=coverage.out diff --git a/common.go b/common.go index b3843a6..22a6495 100644 --- a/common.go +++ b/common.go @@ -130,11 +130,6 @@ func (t ACL) Includes(session proto.SessionType) bool { return t&ACL(1<