[Jython-checkins] jython: Enable PySystemStateTest in Gradle build following fix for #2410.
jeff.allen
jython-checkins at python.org
Sat Jul 14 19:05:43 EDT 2018
https://hg.python.org/jython/rev/10fa6ab4745f
changeset: 8174:10fa6ab4745f
user: Jeff Allen <ja.py at farowl.co.uk>
date: Sat Jul 14 23:58:12 2018 +0100
summary:
Enable PySystemStateTest in Gradle build following fix for #2410.
(Note previous set d83a36fe9f8e is wrongly-attributed. Those mistakes are mine.)
files:
build.gradle | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/build.gradle b/build.gradle
--- a/build.gradle
+++ b/build.gradle
@@ -613,18 +613,20 @@
exclude 'org/python/tests/imp/**' // See build.xml:importest
// Some additional exclusions or else the task fails
+
// FIXME: leaves stdin/out/err as PyFileWriter that has no fileno()
// causing _ioTest to fail.
exclude '**/jsr223/*'
+
// FIXME: Tests that hard-code directory paths (use a symbol):
exclude 'org/python/compiler/custom_proxymaker/**'
exclude 'org/python/compiler/JavaMakerSmokeTest.class'
+
// FIXME: Failing test finds project root from test class location
exclude 'org/python/core/PySystemState_registry_Test.class'
+
// FIXME: Fails as sys._jy_console not set when run under Gradle
exclude 'org/python/util/InterpreterTest.class'
- // FIXME: Failing test, see issue 2410
- exclude 'org/python/core/PySystemStateTest.class'
doFirst {
println "systemProperties = $systemProperties"
--
Repository URL: https://hg.python.org/jython
More information about the Jython-checkins
mailing list