Skip to content

Commit 2edfed6

Browse files
committed
...
1 parent 7f8380a commit 2edfed6

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

test/runtests.jl

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,8 +169,12 @@ MultiDocumenter.make(
169169
@test !isempty(store_content)
170170
@test occursin("Infiltrator.jl", store_content)
171171
@test occursin("@infiltrate", store_content)
172-
@test occursin("$(rootpath)inf/stable/", store_content)
173-
@test occursin("$(rootpath)inf/stable/", store_content)
172+
# We can't traverse symlinks on Windows, so stable/ things do not get
173+
# written into the search index.
174+
if !Sys.iswindows()
175+
@test occursin("$(rootpath)inf/stable/", store_content)
176+
@test occursin("$(rootpath)inf/stable/", store_content)
177+
end
174178
@test !occursin("/inf/dev/", store_content)
175179
end
176180

0 commit comments

Comments
 (0)