Skip to content

Commit 118b92b

Browse files
ppislfangerer
authored andcommitted
[GR-52410] Disable jbang test as hot fix for problems with jcoding
PullRequest: graalpython/3223
2 parents cbace75 + 404d775 commit 118b92b

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

graalpython/com.oracle.graal.python.test/src/tests/standalone/test_jbang_integration.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -228,9 +228,10 @@ def test_graalpy_template(self):
228228

229229
self.assertTrue(result == 0, f"Execution failed with code {result}\n command: {command}\n stdout: {out}\n")
230230
self.assertTrue(expected_text in out, f"Expected text:\n{expected_text}\nbut in stdout was:\n{out}")
231-
232-
@unittest.skipUnless(is_enabled, "ENABLE_JBANG_INTEGRATION_UNITTESTS is not true")
233-
@unittest.skipUnless('win' not in sys.platform, "Currently the jbang native image on Win gate fails.")
231+
232+
@unittest.skipUnless(False, "disabled the test until we will resolve the problem with maven and jcoding")
233+
# @unittest.skipUnless(is_enabled, "ENABLE_JBANG_INTEGRATION_UNITTESTS is not true")
234+
@unittest.skipUnless('win32' not in sys.platform, "Currently the jbang native image on Win gate fails.")
234235
def test_graalpy_template_native(self):
235236
template_name = "graalpy"
236237
test_file = "graalpy_test.java"

0 commit comments

Comments
 (0)