Welcome! Please see the About page for a little more info on how this works.

0 votes
in data.csv by

Make data.csv available for clojurescript users.

6 Answers

0 votes
by

Comment made by: jonase

I'm failing to run the clojure tests via the command mvn clojure:test which I think the ci server uses. I'm getting the following exception:

`
Exception in thread "main" java.io.FileNotFoundException: Could not locate clojure/data/test_runner/__init.class or clojure/data/test_runner/.clj on classpath:

at clojure.lang.RT.load(RT.java:432)
at clojure.lang.RT.load(RT.java:400)
at clojure.core$load$fn__4890.invoke(core.clj:5415)
at clojure.core$load.doInvoke(core.clj:5414)
at clojure.lang.RestFn.invoke(RestFn.java:408)
at clojure.core$load_one.invoke(core.clj:5227)
at clojure.core$load_lib.doInvoke(core.clj:5264)
at clojure.lang.RestFn.applyTo(RestFn.java:142)
at clojure.core$apply.invoke(core.clj:603)
at clojure.core$load_libs.doInvoke(core.clj:5298)
at clojure.lang.RestFn.applyTo(RestFn.java:137)
at clojure.core$apply.invoke(core.clj:603)
at clojure.core$require.doInvoke(core.clj:5381)
at clojure.lang.RestFn.invoke(RestFn.java:408)
at user$eval1.invoke(run-test3909933917568395357.clj:1)
at clojure.lang.Compiler.eval(Compiler.java:6511)
at clojure.lang.Compiler.load(Compiler.java:6952)
at clojure.lang.Compiler.loadFile(Compiler.java:6912)
at clojure.main$load_script.invoke(main.clj:283)
at clojure.main$script_opt.invoke(main.clj:343)
at clojure.main$main.doInvoke(main.clj:427)
at clojure.lang.RestFn.invoke(RestFn.java:408)
at clojure.lang.Var.invoke(Var.java:415)
at clojure.lang.AFn.applyToHelper(AFn.java:161)
at clojure.lang.Var.applyTo(Var.java:532)
at clojure.main.main(main.java:37)

`

0 votes
by
0 votes
by

Comment made by: jonase

Can we resolve the reflection warnings in patch 0002?

$ rlwrap mvn clojure:repl ... Clojure 1.8.0 user=> (set! *warn-on-reflection* true) true user=> (require '[clojure.data.csv :as csv]) Reflection warning, clojure/data/csv.cljc:62:8 - call to method unread on java.io.PushbackReader can't be resolved (argument types: unknown). Reflection warning, clojure/data/csv.cljc:91:8 - call to method write on java.io.Writer can't be resolved (argument types: unknown). nil user=>

0 votes
by

Comment made by: slipset

fixed in the 0003 patch.

0 votes
by

Comment made by: slipset

I guess this could be merged in the near future because of Alex work on the build platform?

0 votes
by
Reference: https://clojure.atlassian.net/browse/DCSV-13 (reported by slipset)
...