Re: unsafe/compile error

2015-06-21 Thread Andrea Jemmett
Thank you, that worked! *Andrea Jemmett* 2015-06-21 21:10 GMT+02:00 Reynold Xin : > Put them in quotes, e.g. > > sbt/sbt "mllib/testOnly *NaiveBayesSuite" > > On Sun, Jun 21, 2015 at 11:15 AM, acidghost > wrote: > >> Something like mllib/testOnly NaiveBayesSuite is what I need! >> >> But it's n

Re: unsafe/compile error

2015-06-21 Thread Reynold Xin
Put them in quotes, e.g. sbt/sbt "mllib/testOnly *NaiveBayesSuite" On Sun, Jun 21, 2015 at 11:15 AM, acidghost wrote: > Something like mllib/testOnly NaiveBayesSuite is what I need! > > But it's not working, runs all mllib suites. > > > > -- > View this message in context: > http://apache-spark

Re: unsafe/compile error

2015-06-21 Thread acidghost
Something like mllib/testOnly NaiveBayesSuite is what I need! But it's not working, runs all mllib suites. -- View this message in context: http://apache-spark-developers-list.1001551.n3.nabble.com/unsafe-compile-error-tp12815p12820.html Sent from the Apache Spark Developers List mailing list

Re: unsafe/compile error

2015-06-21 Thread Burak Yavuz
In addition, if you want to run a single suite, you may use: mllib/testOnly $SUITE_NAME with sbt. On Jun 21, 2015 10:32 AM, "Burak Yavuz" wrote: > You need to build an assembly jar for the cluster tests to pass. You may > use 'sbt assembly/assembly'. > > Best, > Burak > On Jun 21, 2015 3:43 AM, "

Re: unsafe/compile error

2015-06-21 Thread Burak Yavuz
You need to build an assembly jar for the cluster tests to pass. You may use 'sbt assembly/assembly'. Best, Burak On Jun 21, 2015 3:43 AM, "acidghost" wrote: > After an sbt update the tests run. But all the "cluster" ones fail on "task > size should be small in both training and prediction" > >

Re: unsafe/compile error

2015-06-21 Thread acidghost
After an sbt update the tests run. But all the "cluster" ones fail on "task size should be small in both training and prediction" -- View this message in context: http://apache-spark-developers-list.1001551.n3.nabble.com/unsafe-compile-error-tp12815p12816.html Sent from the Apache Spark Develop