We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9be4dd7 commit 31ef039Copy full SHA for 31ef039
1 file changed
test/test_venv.jl
@@ -60,8 +60,18 @@ end
60
env = copy(ENV)
61
env["PYCALL_JL_RUNTIME_PYTHON"] = newpython
62
jlcmd = setenv(`$(Base.julia_cmd()) -e $code`, env)
63
- output = read(jlcmd, String)
64
- @test newpython == output
+ if Compat.Sys.iswindows()
+ # Marking the test broken in Windows. It seems that
65
+ # venv copies .dll on Windows and libpython check in
66
+ # PyCall.__init__ detects that.
67
+ @test_broken begin
68
+ output = read(jlcmd, String)
69
+ newpython == output
70
+ end
71
+ else
72
73
+ @test newpython == output
74
75
end
76
77
0 commit comments