SLIDER-680 cut test option to choose between shell and .py script as obsolete
diff --git a/slider-funtest/src/main/groovy/org/apache/slider/funtest/framework/CommandTestBase.groovy b/slider-funtest/src/main/groovy/org/apache/slider/funtest/framework/CommandTestBase.groovy
index 1cb245a..b3959af 100644
--- a/slider-funtest/src/main/groovy/org/apache/slider/funtest/framework/CommandTestBase.groovy
+++ b/slider-funtest/src/main/groovy/org/apache/slider/funtest/framework/CommandTestBase.groovy
@@ -121,8 +121,6 @@
 
     TEST_AM_KEYTAB = SLIDER_CONFIG.getTrimmed(
         KEY_TEST_AM_KEYTAB)
-    
-    
 
     TILDE = Shell.WINDOWS? "~" : "\\~" 
   }
@@ -137,11 +135,10 @@
 
     SliderShell.confDir = SLIDER_CONF_DIRECTORY
     
-    // choose python script if on windows or the launch key recommends it
+    // choose python script if on windows
     // 
-    boolean python = SLIDER_CONFIG.getBoolean(KEY_LAUNCH_PYTHON, false)
     SliderShell.scriptFile =
-        (SliderShell.windows || python) ? SLIDER_SCRIPT_PYTHON : SLIDER_SCRIPT
+        SliderShell.windows ? SLIDER_SCRIPT_PYTHON : SLIDER_SCRIPT
     
     //set the property of the configuration directory
     def path = SLIDER_CONF_DIRECTORY.absolutePath
diff --git a/slider-funtest/src/main/groovy/org/apache/slider/funtest/framework/FuntestProperties.groovy b/slider-funtest/src/main/groovy/org/apache/slider/funtest/framework/FuntestProperties.groovy
index 92a7a95..2b13d13 100644
--- a/slider-funtest/src/main/groovy/org/apache/slider/funtest/framework/FuntestProperties.groovy
+++ b/slider-funtest/src/main/groovy/org/apache/slider/funtest/framework/FuntestProperties.groovy
@@ -75,8 +75,4 @@
   String HDFS_SITE_XML = "hdfs-site.xml"
   String YARN_SITE_XML = "yarn-site.xml"
 
-  /**
-   * Flag to indicate that the .py script should be launched: {@value}
-   */
-  String KEY_LAUNCH_PYTHON = "slider.test.launch.python"
 }