We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a22bf94 commit 261374aCopy full SHA for 261374a
1 file changed
_tests/tests_suite_test.go
@@ -45,7 +45,9 @@ var _ = BeforeSuite(func() {
45
workflowPort := os.Getenv("DEIS_WORKFLOW_SERVICE_PORT")
46
Expect(workflowHost).ShouldNot(BeEmpty())
47
Expect(workflowPort).ShouldNot(BeEmpty())
48
- Expect("../client/deis").Should(BeAnExistingFile())
+ // use the "deis" executable in the search $PATH
49
+ _, err := exec.LookPath("deis")
50
+ Expect(err).NotTo(HaveOccurred())
51
52
// register the test-admin user
53
register(url, testAdminUser, testAdminPassword, testAdminEmail)
0 commit comments