↳
In-reply-to
»
Executing all tests of the online registrations I'm building for the scouts takes now 70 seconds. Initializing a new SQLite database in RAM and creating all the tables for each test case sums up and takes its time. During development cycles I more often resort to the
⤋ Read More
-run
flag for go test
to specify only one area of tests to be executed. Much more fun this way to quickly go back to writing code.
@lyse@lyse.isobeef.org How much emphasis do you place on test coverage?