jumutc / SALSA.jl

Software Lab for Advanced Machine Learning with Stochastic Algorithms in Julia
http://salsajl.rtfd.org
GNU General Public License v3.0
13 stars 7 forks source link

Package tests fail DelimitedFile not defined #5

Closed droidicus closed 9 years ago

droidicus commented 9 years ago

When running Pkg.test("SALSA") I get the following output:

julia> Pkg.test("SALSA")
INFO: Testing SALSA
Running tests:
* unit/test_pegasos.jl
ERROR: DelimitedFile not defined
 in include at boot.jl:245
 in include_from_node1 at loading.jl:128
 in include at boot.jl:245
 in include_from_node1 at loading.jl:128
 in include at boot.jl:245
 in include_from_node1 at loading.jl:128
 in reload_path at loading.jl:152
 in _require at loading.jl:67
 in require at loading.jl:51
 in include at boot.jl:245
 in include_from_node1 at loading.jl:128
 in anonymous at no file:19
 in include at boot.jl:245
 in include_from_node1 at loading.jl:128
 in process_options at client.jl:285
 in _start at client.jl:354

Is there a missing package in REQUIRE?

jumutc commented 9 years ago

Hello @droidicus, I think this is the consequence of issue #3 so after fixing it everything should work fine in practice! P.S. in Linux CI builds https://travis-ci.org/jumutc/SALSA.jl everything is fine

droidicus commented 9 years ago

You are correct, tests are passing now. Thanks!