Skip to content

Commit

Permalink
linux only
Browse files Browse the repository at this point in the history
  • Loading branch information
palday committed Jul 24, 2024
1 parent dc7a0c7 commit 07fee95
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ println(R"l10n_info()")
"macros",
"namespaces",
"repl",
"ijulia",
]

for t in tests
Expand All @@ -73,6 +72,15 @@ println(R"l10n_info()")
end
end

if Sys.islinux()
# the IJulia tests depend on the R graphics device being set up correctly,
# which is non trivial on non-linux headless devices (e.g. CI)
# it also uses the assumed path to Jupyter on unix
@testset "IJulia" begin
include("ijulia.jl")
end
end

@info "" RCall.conda_provided_r

# make sure we're back where we started
Expand Down

0 comments on commit 07fee95

Please sign in to comment.