Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add PyCall extension #502

Merged
merged 18 commits into from
Oct 5, 2023
7 changes: 7 additions & 0 deletions test/runtests.jl
Original file line number Diff line number Diff line change
@@ -15,6 +15,12 @@ function activate_downstream_env()
Pkg.instantiate()
end

function activate_python_env()
Pkg.activate("python")
Pkg.develop(PackageSpec(path = dirname(@__DIR__)))
Pkg.instantiate()
end

@time begin
if GROUP == "Core" || GROUP == "All"
@time @safetestset "Aqua" begin
@@ -95,6 +101,7 @@ end
end

if !is_APPVEYOR && GROUP == "Python"
activate_python_env()
@time @safetestset "PyCall" begin
include("python/pycall.jl")
end