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 7f8380a commit 2edfed6Copy full SHA for 2edfed6
test/runtests.jl
@@ -169,8 +169,12 @@ MultiDocumenter.make(
169
@test !isempty(store_content)
170
@test occursin("Infiltrator.jl", store_content)
171
@test occursin("@infiltrate", store_content)
172
- @test occursin("$(rootpath)inf/stable/", store_content)
173
+ # We can't traverse symlinks on Windows, so stable/ things do not get
+ # written into the search index.
174
+ if !Sys.iswindows()
175
+ @test occursin("$(rootpath)inf/stable/", store_content)
176
177
+ end
178
@test !occursin("/inf/dev/", store_content)
179
end
180
0 commit comments