This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2017-03-03
Channels
- # bangalore-clj (2)
- # beginners (29)
- # boot (52)
- # cider (4)
- # clara (3)
- # cljs-dev (34)
- # cljsjs (7)
- # cljsrn (3)
- # clojure (71)
- # clojure-austin (1)
- # clojure-dev (5)
- # clojure-france (20)
- # clojure-russia (51)
- # clojure-spec (9)
- # clojure-uk (20)
- # clojurescript (131)
- # core-async (56)
- # core-logic (6)
- # cursive (50)
- # datascript (19)
- # datomic (16)
- # dirac (118)
- # emacs (100)
- # events (4)
- # hoplon (14)
- # incanter (1)
- # jobs (7)
- # jobs-discuss (96)
- # jobs-rus (21)
- # lein-figwheel (5)
- # leiningen (21)
- # off-topic (11)
- # om (45)
- # onyx (42)
- # pamela (1)
- # pedestal (22)
- # portland-or (3)
- # re-frame (8)
- # reagent (5)
- # ring (9)
- # robots (1)
- # spacemacs (14)
- # specter (28)
- # sql (2)
- # untangled (165)
I’m hitting some issues moving to lein-sub/lein-parent with managed dependencies at scale. As in, 48 sub-modules, 100 managed dependencies. Looks like for each sub-module, it re-evaluates all 100 managed dependencies. This gets very, very slow. Has anyone else done things at this scale?
@devth you probably have something in your environment that is redefining clojure.test/report
which is originally a multimethod and test.check expects it to be a multimethod. What editor are you using?
Asked about the editor because I fixed a similar issue in vim-fireplace a few months ago. But most people have reported it to happen when using cider and clojure.spec (https://github.com/clojure-emacs/cider/issues/1841) and in that case the solution for now seems to be adding the require
@devth: you should find all the details here: https://github.com/tpope/vim-fireplace/commit/3ff305d3eb03e28843859220ac5e4481d51794ff 🙂
i read an issue awhile back where they basically said WONTFIX so i have to require test.check in every test instead
I had the issue when just using test.check... and it wouldn't be fixed by just adding the test.check require, because I already had it...
https://github.com/technomancy/leiningen/issues/2173 – the :monkeypatch-clojure-test false
suggestion fixes for running lein test
(i believe) but not running tests via vim-fireplace
ah here's the WONTFIX issue http://dev.clojure.org/jira/browse/TCHECK-113