JuliaMath / Primes.jl

Prime numbers in Julia
Other
99 stars 32 forks source link

Disable failing doctest #142

Closed fingolfin closed 1 year ago

fingolfin commented 1 year ago

This doctest annotates the output of divisors(60), which is nice, but Documenter doesn't like it. So just turn it into a plain code block without any testing.

fingolfin commented 1 year ago

@oscardssmith works now!

I had to disable the test which verifies if all docstrings are actually included in the documentation -- they aren't... (and I am torn about that check; I have plenty docstrings in my projects that are not meant for users and hence not included there). Anyway, my point is: one can re-enable this in a future PR. For now, it's more important to restore doc deployment. So let's see whether merging this branch will result in the gh-pages branch being updated for the first time in years ;-).

oscardssmith commented 1 year ago

Thanks so much for the effort you've put into this!