Skip to content

Commit

Permalink
Metrics SDK work-in-progress (#172)
Browse files Browse the repository at this point in the history
Introduce the new SDK, four aggregators, and an export interface.
  • Loading branch information
jmacd authored Oct 29, 2019
1 parent 7d30122 commit 937f4ff
Show file tree
Hide file tree
Showing 43 changed files with 3,530 additions and 508 deletions.
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ ALL_DOCS := $(shell find . -name '*.md' -type f | sort)
ALL_GO_MOD_DIRS := $(shell find . -type f -name 'go.mod' -exec dirname {} \; | sort)

GOTEST=go test
GOTEST_OPT?=-v -race -timeout 30s
GOTEST_OPT?=-v -timeout 30s
GOTEST_OPT_WITH_RACE = $(GOTEST_OPT) -race
GOTEST_OPT_WITH_COVERAGE = $(GOTEST_OPT) -coverprofile=coverage.txt -covermode=atomic

.DEFAULT_GOAL := precommit
Expand Down Expand Up @@ -62,6 +63,7 @@ test-clean-work-tree:
.PHONY: test
test: examples
$(GOTEST) $(GOTEST_OPT) $(ALL_PKGS)
$(GOTEST) $(GOTEST_OPT_WITH_RACE) $(ALL_PKGS)

.PHONY: test-386
test-386:
Expand Down
Loading

0 comments on commit 937f4ff

Please sign in to comment.