We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5156e5 commit b2a8508Copy full SHA for b2a8508
Makefile
@@ -54,6 +54,10 @@ acceptance-tests-up: build .env
54
55
.PHONY: acceptance-tests-run
56
acceptance-tests-run: .env
57
+ # Wait for GeoServer to be ready (up to 2 minutes)
58
+ docker compose exec -T print sh -c 'for i in $(shell seq 1 24); do curl --fail http://geoserver:8080/geoserver/web/ && exit 0; sleep 5; done; exit 1'
59
+ docker compose exec -T print curl --fail http://geoserver:8080/geoserver/www/map-data/test-data/simple-squares-geojson.json
60
+
61
docker compose exec -T tests gradle \
62
--exclude-task=:core:spotbugsMain --exclude-task=:core:checkstyleMain \
63
--exclude-task=:core:spotbugsTest --exclude-task=:core:checkstyleTest --exclude-task=:core:testCLI \
0 commit comments