We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70a8cc0 commit d260afaCopy full SHA for d260afa
org.scala-ide.sdt.scalatest/src/scala/tools/eclipse/scalatest/launching/ScalaTestLaunchDelegate.scala
@@ -242,7 +242,7 @@ class ScalaTestLaunchDelegate extends AbstractJavaLaunchConfigurationDelegate {
242
require(configuration != null)
243
244
val launchType = configuration.getAttribute(SCALATEST_LAUNCH_TYPE_NAME, TYPE_SUITE)
245
- val outputDir = getClasspath(configuration).foldLeft("")((acc, act) => acc + " " + escapeScalaTestClasspathComponent(act)).trim
+ val outputDir = getClasspath(configuration).filter(!_.endsWith(".jar")).foldLeft("")((acc, act) => acc + " " + escapeScalaTestClasspathComponent(act)).trim
246
launchType match {
247
case TYPE_SUITE =>
248
val suiteClass = configuration.getAttribute(IJavaLaunchConfigurationConstants.ATTR_MAIN_TYPE_NAME, "")
0 commit comments