Skip to content

Commit 8d8ea6e

Browse files
author
Christopher Doris
committed
build(test): add PyCall build in CI
Add conditional logic to build PyCall package when running in CI environment, ensuring proper setup for tests that depend on Python interoperability.
1 parent 60de18b commit 8d8ea6e

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

test/runtests.jl

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
if get(ENV, "CI", "") != ""
2+
@info "Building PyCall in CI"
3+
using Pkg
4+
Pkg.build("PyCall")
5+
end
6+
17
using TestItemRunner
28

39
@run_package_tests

0 commit comments

Comments
 (0)