Skip to content

Commit

Permalink
exclude dvips tests when not on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Ulrike Fischer committed Nov 7, 2023
1 parent 6f95f48 commit d6c427d
Showing 1 changed file with 18 additions and 8 deletions.
26 changes: 18 additions & 8 deletions build.lua
Original file line number Diff line number Diff line change
Expand Up @@ -60,14 +60,24 @@ checkruns = 4
checkengines = {"pdftex","luatex","xetex"}



checkconfigs = {"build", -- luatex, pdftex, xetex
"config-noxetex", --pdftex + luatex (std)
"config-luatex", -- luatex
"config-dvips", -- latex + dvips
"config-pdftex", -- pdftex
"config-xetex" -- xetex
}
if os.type == "windows" then
checkconfigs = {"build", -- luatex, pdftex, xetex
"config-noxetex", --pdftex + luatex (std)
"config-luatex", -- luatex
"config-dvips", -- latex + dvips
"config-pdftex", -- pdftex
"config-xetex" -- xetex
}
else
-- exclude dvips tests if not on windows
checkconfigs = {"build", -- luatex, pdftex, xetex
"config-noxetex", --pdftex + luatex (std)
"config-luatex", -- luatex
-- "config-dvips", -- latex + dvips
"config-pdftex", -- pdftex
"config-xetex" -- xetex
}
end

-- tagging
tagfiles = {
Expand Down

0 comments on commit d6c427d

Please sign in to comment.