You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to scala-...@googlegroups.com
Hi guys,
Is it possible to run PresentationCompilerTest inside of Eclipse and have the tests pass? When I try to run them they all fail.
running `mvn -P scala-2.10.x clean install` inside of `org.scala-ide.sdt.core.tests` passes (most of the time) for me.
Cheers,
Mads
Mads Hartmann Jensen
unread,
Dec 11, 2012, 5:31:25 PM12/11/12
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to scala-...@googlegroups.com
If it isn't possible inside of Eclipse, is it then possible just to run the one test using maven? It takes 5 minutes to run `mvn -P scala-2.10.x clean install` inside of `org.scala-ide.sdt.core.tests` which is a bit much ;)
I tried `mvn -P scala-2.10.x -Dtest= PresentationCompilerTest test` but it didn't really do anything as far as I can see.
Cheers,
Mads
Rafał Krzewski
unread,
Dec 11, 2012, 6:44:12 PM12/11/12
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to scala-...@googlegroups.com
Hi Mads,
you should invoke tycho-surefire:test instead. There's a space after -Dtest= in your message above and that wouldn't work because maven would look for goal named PresentationCompilerTest and fail.
HTH
Rafał
Mads Hartmann Jensen
unread,
Dec 12, 2012, 1:41:41 AM12/12/12
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to scala-...@googlegroups.com
Awesome, thanks!
Now it only takes 1.5 minutes to see if my code works ;)
Just in case someone searches for this in the future this is what I used to run a single test: