File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed
Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change 77Deiban-based distribution such as Ubuntu and Python executable installed by
88Conda in Linux.
99
10+ In Windows and macOS, this CLI is not necessary because those platforms do
11+ not have the pre-compilation issue mentioned above. In fact, this CLI is
12+ known to not work on Windows at the moment.
13+
1014Although this script has -i option and it can do a basic REPL, contrl-c may
1115crash the whole process. Consider using IPython >= 7 which can be launched
1216by::
Original file line number Diff line number Diff line change 66from julia .core import which
77from julia .python_jl import parse_pyjl_args
88
9+ is_windows = os .name == "nt"
10+
911PYJULIA_TEST_REBUILD = os .environ .get ("PYJULIA_TEST_REBUILD" , "no" ) == "yes"
1012JULIA = os .environ .get ("JULIA_EXE" )
1113
@@ -50,6 +52,9 @@ def test_cli_quick_pass_no_julia(cli_args):
5052 )
5153
5254
55+ @pytest .mark .skipif (
56+ is_windows ,
57+ reason = "python-jl is not supported in Windows" )
5358@pytest .mark .skipif (
5459 not PYJULIA_TEST_REBUILD ,
5560 reason = "PYJULIA_TEST_REBUILD=yes is not set" )
You can’t perform that action at this time.
0 commit comments