Skip to content

Commit

Permalink
Merge pull request #15778 from deads2k/backport-test-01
Browse files Browse the repository at this point in the history
Automatic merge from submit-queue

make the router integration tests run as part of test-end-to-end

Fixes #15771.  Maybe.
  • Loading branch information
openshift-merge-robot authored Aug 15, 2017
2 parents fbbe981 + 84a743d commit d109fb9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
9 changes: 7 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -45,17 +45,21 @@ all build:
#
# Example:
# make build-tests
build-tests: build-extended-test build-integration-test
build-tests: build-extended-test build-integration-test build-router-e2e-test
.PHONY: build-tests

build-extended-test:
hack/build-go.sh test/extended/extended.test
.PHONY: build-extended-test

build-integration-test:
build-integration-test: build-router-e2e-test
hack/build-go.sh test/integration/integration.test
.PHONY: build-integration-test

build-router-e2e-test:
hack/build-go.sh test/end-to-end/end-to-end.test
.PHONY: build-router-e2e-test

# Run core verification and all self contained tests.
#
# Example:
Expand Down Expand Up @@ -187,6 +191,7 @@ test-cmd: build
# Example:
# make test-end-to-end
test-end-to-end: build
KUBE_COVER=" " KUBE_RACE=" " OS_TEST_PACKAGE=test/end-to-end hack/test-integration.sh
hack/test-end-to-end.sh
.PHONY: test-end-to-end

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package integration
package endtoend

import (
"crypto/tls"
Expand Down

0 comments on commit d109fb9

Please sign in to comment.