Skip to content

Commit e7dbae8

Browse files
committed
[GR-52410] Disable jbang test as hot fix for problems with jcoding
1 parent cbace75 commit e7dbae8

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)