Skip to content

Commit 2cdc501

Browse files
committed
temporarily disable on windows failing test_gen_launcher_and_venv
1 parent 303c703 commit 2cdc501

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
# SOFTWARE.
3939

4040
import os
41+
import sys
4142
import subprocess
4243
import tempfile
4344
import unittest
@@ -331,6 +332,7 @@ def test_fail_without_graalpy_dep(self):
331332
self.purge_local_repo(target_dir, False)
332333

333334
@unittest.skipUnless(is_enabled, "ENABLE_STANDALONE_UNITTESTS is not true")
335+
@unittest.skipUnless(sys.platform != 'win32', "ujson install fails on windows")
334336
def test_gen_launcher_and_venv(self):
335337
with tempfile.TemporaryDirectory() as tmpdir:
336338
target_name = "gen_launcher_and_venv_test"
@@ -341,7 +343,7 @@ def test_gen_launcher_and_venv(self):
341343

342344
try:
343345
cmd = MVN_CMD + ["-X", "process-resources"]
344-
out, return_code = run_cmd(cmd, self.env, cwd=target_dir)
346+
out, return_code = run_cmd(cmd, self.env, cwd=target_dir)
345347
assert "-m venv" in out
346348
assert "-m ensurepip" in out
347349
assert "ujson" in out

0 commit comments

Comments
 (0)