Skip to content

Commit

Permalink
Merge pull request kata-containers#143 from GabyCT/topic/enablefuncti…
Browse files Browse the repository at this point in the history
…onal

tests: Add functional tests to Makefile
  • Loading branch information
chavafg authored Mar 20, 2018
2 parents a131865 + 6c8bda3 commit ef1f883
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,13 @@ ginkgo:
GOPATH=$(PWD)/vendor go build ./vendor/github.com/onsi/ginkgo/ginkgo
unlink vendor/src

functional: ginkgo
ifeq (${RUNTIME},)
$(error RUNTIME is not set)
else
./ginkgo -v functional/ -- -runtime=${RUNTIME} -timeout=${TIMEOUT}
endif

integration: ginkgo
ifeq ($(RUNTIME),)
$(error RUNTIME is not set)
Expand All @@ -31,7 +38,7 @@ crio:
log-parser:
make -C cmd/log-parser

test: integration
test: functional integration

check: checkcommits log-parser

Expand Down

0 comments on commit ef1f883

Please sign in to comment.