Skip to content

Commit cf3137f

Browse files
authored
Merge pull request #34 from oscar-system/bl/fixupbooktest
fixup: booktest only on linux + julia 1.10
2 parents 04e7776 + 63c2e8e commit cf3137f

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "OscarDevTools"
22
uuid = "4f01c588-2833-446a-9dbd-6331d80acb41"
33
authors = ["Benjamin Lorenz <[email protected]>"]
4-
version = "0.2.16"
4+
version = "0.2.17"
55

66
[deps]
77
GitHub = "bc5e4493-9b4d-5f90-b8aa-2b2bcaad7a26"

src/OscarCI.jl

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,9 +317,12 @@ function github_env_runtests(job::Dict; varname::String, filename::String)
317317
if length(get(param, "options", [])) > 0
318318
push!(testcmd, """Pkg.test("$pkg"; test_args=$(string.(param["options"])));""")
319319
elseif pkg == "Oscar"
320-
for group in ["short", "book", "long"]
320+
for group in ["short", "long"]
321321
push!(testcmd, """withenv("OSCAR_TEST_SUBSET"=>"$group") do; Pkg.test("$pkg"); end;""")
322322
end
323+
if Sys.islinux() && v"1.10" <= VERSION < v"1.11.0-DEV"
324+
push!(testcmd, """withenv("OSCAR_TEST_SUBSET"=>"book") do; Pkg.test("$pkg"); end;""")
325+
end
323326
else
324327
push!(testcmd, """Pkg.test("$pkg");""")
325328
end

0 commit comments

Comments
 (0)