specter/DEVELOPER.md

25 lines
430 B
Markdown
Raw Normal View History

2015-06-30 23:59:39 +00:00
# Running Clojure tests
2015-07-01 00:00:14 +00:00
```
lein do clean, test
2015-07-01 00:00:14 +00:00
```
2015-06-30 23:59:39 +00:00
# Running ClojureScript tests
```
lein do clean, javac, test-cljs
2015-06-30 23:59:39 +00:00
```
# Running benchmarks
## All benchmarks
```
scripts/run-benchmarks
```
## Individual benchmark(s)
Specify the benchmark names as command line args. They will likely each need quoted because they contain spaces.
Order is ignored.
```
scripts/run-benchmarks "prepend to a vector" "filter a sequence"
```