testing

Testing tools, testing philosophy & methodology...
timgilbert 2019-02-12T15:15:43.000900Z

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

timgilbert 2019-02-12T15:15:57.001200Z

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

ljosa 2019-02-12T15:27:30.002300Z

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

timgilbert 2019-02-12T15:44:22.002500Z

Hmm, yeah