-
Notifications
You must be signed in to change notification settings - Fork 17.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cmd/go: when testing a package, also build the non-test variant #29527
Comments
In-package tests are always at risk of unrealism. For example, what if In contrast, a package-external test ( Instead of adding a “clean package build” step where it isn't otherwise needed, I'd rather we encourage users to use external tests instead of in-package ones. See also #29258. |
But everybody has tons of tests that use unexported functions. That all will break and the export_test.go trick is quite inconvenient to use and in end it's again in-package _test.go file. For these reasons we always recommended the opposite. What am I missing/what has changed? |
I said “encourage”, not “require”. If you want to catch subtle variations between the test package and the real one, test against the real one: that's something you can do today, without any extra support from the
|
This seems like a reasonable thing to try to help users notice. I strongly disagree about suggesting use of external tests by default. Quite the opposite: I think external tests should be reserved for cases where an internal test would hit an import cycle. I would like to understand how much it would cost in a typical |
go version devel +0175064e69 Thu Jan 3 05:07:58 2019 +0000 linux/amd64
If a package can be built only in test mode,
go test
succeeds whilego build/install
fails:If one develops just a package,
go test
is the main means of ensuring that everything works and lots of CIs just rungo test
, which means that it's possible to commit code that does not even build without noticing it.It would be nice if
go test
would ensure that a package actually builds.The text was updated successfully, but these errors were encountered: