We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20e7c2f commit a17445eCopy full SHA for a17445e
test/runtests.jl
@@ -132,6 +132,12 @@ testconfigs = [
132
expectedfile = joinpath(@__DIR__, "build", config[:sitename] * ".epub")
133
@test isfile(expectedfile)
134
if isepubcheck
135
- @test_nowarn run(`epubcheck -q $expectedfile`)
+ cmd = `epubcheck -q $expectedfile`
136
+ err = Pipe()
137
+ proc = run(pipeline(ignorestatus(cmd), stdout=devnull, stderr=err))
138
+ close(err.in)
139
+ errmsg = String(read(err))
140
+ # we expect one error for apple metadata and two additional output lines
141
+ @test count(==('\n'), errmsg) == 3
142
end
143
0 commit comments