Skip to content
Snippets Groups Projects
Commit 6b093d5d authored by Cam Saul's avatar Cam Saul
Browse files

actually we can't skip lein deps because dependencies won't get cached

parent 1f110b28
No related branches found
No related tags found
No related merge requests found
......@@ -2,9 +2,9 @@ machine:
java:
version:
oraclejdk8
dependencies: # We can skip inferred `npm install` since we're not running browser tests (yet).
override: # We can also skip `lein deps` since the test commands will install them if needed.
- echo "ok." # No need to spin up Clojure twice
dependencies:
override:
- lein deps # We can skip inferred `npm install` since we're not running browser tests (yet)
test:
override:
- case $CIRCLE_NODE_INDEX in 0) lein eastwood ;; 1) lein test ;; esac:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment