JuliaGeometry/Meshes.jl

Find out which tests are emitting warnings

Open

#1,391 opened on Jul 4, 2026

View on GitHub
 (0 comments) (0 reactions) (0 assignees)Julia (98 forks)auto 404
good first issuehelp wanted

Repository metrics

Stars
 (460 stars)
PR merge metrics
 (PR metrics pending)

Description

The following warnings are being emitted by our test suite:

 Warning: maximum number of subdivisions reached `maxsubdiv=32768`, try increasing the keyword argument `maxsubdiv`.
└ @ HAdaptiveIntegration ~/.julia/packages/HAdaptiveIntegration/OeagO/src/integrate.jl:120
┌ Warning: maximum number of subdivisions reached `maxsubdiv=32768`, try increasing the keyword argument `maxsubdiv`.
└ @ HAdaptiveIntegration ~/.julia/packages/HAdaptiveIntegration/OeagO/src/integrate.jl:120

As far as I know, there is no method to print the exact lines that are emitting the warning, so we need to run tests one by one in the REPL to discover the root of the issue. It is likely emitted by some test that calls centroid as we changed the fallback to use h-adaptive integration.

Contributor guide