Merge pull request #477 from bs-github/fix/Makefile-test-e2e

Disable end-to-end tests for non Linux OSes in Makefile
This commit is contained in:
Tobias Schmidt 2017-02-28 10:24:24 -04:00 committed by GitHub
commit eb6c109a63
1 changed files with 15 additions and 1 deletions

View File

@ -21,8 +21,19 @@ BIN_DIR ?= $(shell pwd)
DOCKER_IMAGE_NAME ?= node-exporter
DOCKER_IMAGE_TAG ?= $(subst /,-,$(shell git rev-parse --abbrev-ref HEAD))
ifeq ($(OS),Windows_NT)
OS_detected := Windows
else
OS_detected := $(shell uname -s)
endif
all: format build test test-e2e
ifeq ($(OS_detected), Linux)
test-e2e := test-e2e
else
test-e2e := skip-test-e2e
endif
all: format build test $(test-e2e)
style:
@echo ">> checking code style"
@ -36,6 +47,9 @@ test-e2e: build
@echo ">> running end-to-end tests"
./end-to-end-test.sh
skip-test-e2e:
@echo ">> SKIP running end-to-end tests on $(OS_detected)"
format:
@echo ">> formatting code"
@$(GO) fmt $(pkgs)