Say, anyone have a simple tool that I can use to time my test runs? Trying to split a test suite into three roughly equal parts for parallelization
...by time I mean "time by namespace"
@timgilbert: How about the time
unix command? 🙂 lein test
can take a namespace as an argument.
Or the clojure time
function wrapped around a call to clojure.test/run-tests
, which can also take one or more namespaces are arguments.
Hmm, yeah