Skip to content
This repository has been archived by the owner on Feb 24, 2024. It is now read-only.

Commit

Permalink
Attempting to fix test runner (#1133)
Browse files Browse the repository at this point in the history
  • Loading branch information
unrolled authored and markbates committed Jun 22, 2018
1 parent 9182ee5 commit af99cb6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions buffalo/cmd/test.go
Expand Up @@ -214,8 +214,7 @@ func testPackages(givenArgs []string) ([]string, error) {
func newTestCmd(args []string) *exec.Cmd {
cargs := []string{"test", "-p", "1"}
app := meta.New(".")
tf := "-tags " + app.BuildTags("development").String()
cargs = append(cargs, tf)
cargs = append(cargs, "-tags", app.BuildTags("development").String())
cargs = append(cargs, args...)
cmd := exec.Command(envy.Get("GO_BIN", "go"), cargs...)
cmd.Stdin = os.Stdin
Expand Down

0 comments on commit af99cb6

Please sign in to comment.