Skip to content

Commit

Permalink
Merge pull request #640 from smartystreets/fix_dropped_test_results
Browse files Browse the repository at this point in the history
Fix #639: Disable pre-compilation for Go 1.16+
  • Loading branch information
riannucci committed Oct 21, 2021
2 parents 2b209bb + 5531d05 commit a743bd0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion web/server/system/shell_1_16.go
Expand Up @@ -3,5 +3,8 @@
package system

func compile(directory, gobin, tagsArg string) Command {
return NewCommand(directory, gobin, "test", tagsArg)
// Don't pre-compile on 1.16
// TODO(iannucci): rework the whole compilation feature to compile all
// test binaries up front in a single `go` command.
return Command{}
}

0 comments on commit a743bd0

Please sign in to comment.