ok, now locate python3.4!

This commit is contained in:
Eric Vergnaud 2015-09-18 23:17:40 +08:00
parent 41f2455c39
commit 50e1512e4f
1 changed files with 1 additions and 6 deletions

View File

@ -41,12 +41,7 @@ public abstract class BasePython3Test extends BasePythonTest {
@Override
protected String getPythonExecutable() {
String os = System.getenv("TRAVIS");
System.out.println("TRAVIS-CI detected: " + os);
if("true".equals(os))
return "python3";
else
return "python3.4";
return "python3.4";
}
@Override