Fork me on GitHub
#testing
<
2019-02-12
>
timgilbert15:02:43

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

timgilbert15:02:57

...by time I mean "time by namespace"

ljosa15:02:30

@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.