Revert "Make minitest runner use the tests view always."

This reverts commit 1a1800326f357553f9b0106a729b7764899d909d.

Change-Id: If126afa0a08ec147fcb701d41fbb13140369441c
Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
diff --git a/plugins/org.eclipse.dltk.ruby.testing/src/org/eclipse/dltk/ruby/testing/internal/miniunit/MiniTestingEngine.java b/plugins/org.eclipse.dltk.ruby.testing/src/org/eclipse/dltk/ruby/testing/internal/miniunit/MiniTestingEngine.java
index 26d3ac8..10ff374 100644
--- a/plugins/org.eclipse.dltk.ruby.testing/src/org/eclipse/dltk/ruby/testing/internal/miniunit/MiniTestingEngine.java
+++ b/plugins/org.eclipse.dltk.ruby.testing/src/org/eclipse/dltk/ruby/testing/internal/miniunit/MiniTestingEngine.java
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2016, 2017 Red Hat Inc. and others
+ * Copyright (c) 2016 Red Hat Inc. and others
  *
  * All rights reserved. This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License v1.0
@@ -119,9 +119,11 @@
 		if (!RubyTestingLaunchConfigurationDelegate.isContainerMode(configuration)) {
 			if (config.getEnvironment().isLocal()) {
 				final String runnerName = MINITEST_RUNNER;
-				final File runnerFile = getRunnerFile(getBundle(), RUNNER_PATH, runnerName);
-				config.addInterpreterArg("-r"); //$NON-NLS-1$
-				config.addInterpreterArg(runnerFile.getPath());
+				if (!isDevelopmentMode(config, runnerName)) {
+					final File runnerFile = getRunnerFile(getBundle(), RUNNER_PATH, runnerName);
+					config.addInterpreterArg("-r"); //$NON-NLS-1$
+					config.addInterpreterArg(runnerFile.getPath());
+				}
 			}
 		} else {
 			final String containerHandle = configuration.getAttribute(DLTKTestingConstants.ATTR_TEST_CONTAINER,