From e825d1b8113aa30110aa78763716e8cac1242c4a Mon Sep 17 00:00:00 2001 From: Cam Saul <cam@getluckybird.com> Date: Thu, 19 Mar 2015 22:57:09 -0700 Subject: [PATCH] don't try to override things circle won't let me override --- circle.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/circle.yml b/circle.yml index 85a2200776d..d0e8cc9d3cb 100644 --- a/circle.yml +++ b/circle.yml @@ -4,14 +4,8 @@ machine: oraclejdk8 dependencies: override: - - echo "ok!" # Nothing, `lein eastwood`/`lein test` will load dependencies as needed so don't waste time booting Clojure twice -database: - override: - - echo "ok!" # We aren't using the test DB + - lein deps # no need to run npm install for non-browser tests test: override: - case $CIRCLE_NODE_INDEX in 0) lein eastwood ;; 1) lein test ;; esac: parallel: true -teardown: - override: - - echo "ok!" # don't waste 10 seconds looking for junit xml files or cucumber json files. There are none -- GitLab