Skip to content

Commit ef371c3

Browse files
committed
fix
1 parent b3639e4 commit ef371c3

File tree

1 file changed

+22
-9
lines changed

1 file changed

+22
-9
lines changed

test/runtests.jl

Lines changed: 22 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -265,12 +265,7 @@ end
265265
using_failed = [false],
266266
)
267267
else
268-
(;
269-
p...,
270-
installs = [false],
271-
success = [false],
272-
doctype = ["missing"],
273-
)
268+
(; p..., installs = [false], success = [false], doctype = ["missing"])
274269
end
275270
end,
276271
(
@@ -296,20 +291,38 @@ end
296291
success = [true],
297292
doctype = ["documenter"],
298293
using_failed = [false],
299-
)
294+
),
295+
(
296+
name = "NetworkDynamics",
297+
url = "https://github.com/JuliaDynamics/NetworkDynamics.jl.git",
298+
uuid = "22e9dc34-2a0d-11e9-0de0-8588d035468b",
299+
versions = [v"0.9.16"],
300+
server_type = "github",
301+
api_url = "",
302+
installs = [true],
303+
success = [false],
304+
doctype = ["documenter"],
305+
using_failed = [false],
306+
),
300307
]
301308

302309
basepath = @__DIR__
303310
rm(joinpath(basepath, "build"), force = true, recursive = true)
304311

305312
DocumentationGenerator.build_documentation(
306-
packages, basepath = basepath, filter_versions = identity, processes = 6
313+
packages,
314+
basepath = basepath,
315+
filter_versions = identity,
316+
processes = 6,
317+
timeout = 300,
307318
)
308319

309320
build = joinpath(basepath, "build")
310321
@testset "build folder" begin
311322
for pkg in packages
312-
pkgbuild = joinpath(build, DocumentationGenerator.get_docs_dir(pkg.name, pkg.uuid))
323+
!pkg.success[1] && continue
324+
pkgbuild =
325+
joinpath(build, DocumentationGenerator.get_docs_dir(pkg.name, pkg.uuid))
313326
@test isdir(pkgbuild)
314327
@testset "$(pkg.name): $(version)" for (i, version) in enumerate(pkg.versions)
315328
log = joinpath(pkgbuild, "$(version).log")

0 commit comments

Comments
 (0)