Make minitest runner use the tests view always.

Change-Id: I62ff85f988125afb88b96e61f5d024f0d3ff50bf
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 10ff374..26d3ac8 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 Red Hat Inc. and others
+ * Copyright (c) 2016, 2017 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,11 +119,9 @@
 		if (!RubyTestingLaunchConfigurationDelegate.isContainerMode(configuration)) {
 			if (config.getEnvironment().isLocal()) {
 				final String runnerName = MINITEST_RUNNER;
-				if (!isDevelopmentMode(config, runnerName)) {
-					final File runnerFile = getRunnerFile(getBundle(), RUNNER_PATH, runnerName);
-					config.addInterpreterArg("-r"); //$NON-NLS-1$
-					config.addInterpreterArg(runnerFile.getPath());
-				}
+				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,