1
2
3
4
5
6
7
8
9
10
11
12
13
14
15 | === modified file '_integration-tests/main.go'
--- _integration-tests/main.go 2015-06-25 14:50:18 +0000
+++ _integration-tests/main.go 2015-06-25 16:02:09 +0000
@@ -57,9 +57,8 @@
func buildTests() {
fmt.Println("Building tests")
prepareTargetDir(testsDir)
- execCommand(
- "go", "test", "-c", "./_integration-tests/tests",
- "-o", testFile)
+ execCommand("go", "test", "-c", "./_integration-tests/tests")
+ execCommand("mv", "tests.test", testFile)
}
func createImage(release, channel string) {
|