We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f5c965 commit 6cd604dCopy full SHA for 6cd604d
2 files changed
_tests/Makefile
@@ -1,7 +1,3 @@
1
-# These environment variables tell the tests where the deis router is, which it uses to communicate with the controller.
2
-# Router's default is to server on 'example.com', so 'deis.example.com' should route to controller.
3
-DEIS_WORKFLOW_SERVICE_HOST ?= deis.example.com
4
-DEIS_WORKFLOW_SERVICE_PORT ?= 80
5
6
test-setup:
7
go get github.com/onsi/ginkgo/ginkgo
_tests/tests_suite_test.go
@@ -32,6 +32,10 @@ var (
32
)
33
34
var _ = BeforeSuite(func() {
35
+ workflowHost := os.Getenv("DEIS_WORKFLOW_SERVICE_HOST")
36
+ workflowPort := os.Getenv("DEIS_WORKFLOW_SERVICE_HOST")
37
+ Expect(workflowHost).ShouldNot(BeEmpty())
38
+ Expect(workflowPort).ShouldNot(BeEmpty())
39
Expect("../client/deis").Should(BeAnExistingFile())
40
41
// register the test-admin user
0 commit comments