File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed
Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -135,12 +135,18 @@ let
135135 '' ;
136136
137137 # Run PostGIS regression tests
138+ # Note: We run tests in specific directories to avoid doc/ which requires
139+ # network access to fetch DocBook DTDs for XML validation
138140 checkPhase = ''
139141 runHook preCheck
140142
141- # Run the regression tests in extension mode
142- # This tests core postgis, raster, topology, and sfcgal
143- make check RUNTESTFLAGS="--extension"
143+ # Run unit tests in code directories (skip doc/ which needs network for DocBook DTD)
144+ make -C liblwgeom check
145+ make -C sfcgal check
146+ make -C loader check
147+
148+ # Run the SQL regression tests in extension mode
149+ make -C regress check RUNTESTFLAGS="--extension"
144150
145151 runHook postCheck
146152 '' ;
You can’t perform that action at this time.
0 commit comments