File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
graalpython/com.oracle.graal.python.test/src/tests/standalone Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change 3838# SOFTWARE.
3939
4040import os
41+ import sys
4142import subprocess
4243import tempfile
4344import 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
You can’t perform that action at this time.
0 commit comments