Skip to content
Snippets Groups Projects
Unverified Commit 57e0249f authored by Cam Saul's avatar Cam Saul
Browse files

Tests don't need to call add-to-classpath! [ci drivers]

parent 37d153f0
No related branches found
No related tags found
No related merge requests found
......@@ -20,7 +20,8 @@
(lazy-loaded-driver/register-lazy-loaded-driver! (assoc info :driver driver))))
;; if *any* of the drivers is not lazy-load, initialize it now
(when (some false? (map :lazy-load drivers))
(add-to-classpath!)
(when add-to-classpath!
(add-to-classpath!))
(init-steps/do-init-steps! init-steps)))
;; record this plugin as initialized and find any plugins ready to be initialized because depended on this one !
;;
......
......@@ -47,7 +47,8 @@
(defn- make-initialize! [driver add-to-classpath! init-steps]
(fn [_]
;; First things first: add the driver to the classpath!
(add-to-classpath!)
(when add-to-classpath!
(add-to-classpath!))
;; remove *this* implementation of `initialize!`, because as you will see below, we want to give
;; lazy-load drivers the option to implement `initialize!` and do other things, which means we need to
;; manually call it. When we do so we don't want to get stuck in an infinite loop of calls back to this
......
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