15 - vagrant/install-on-travis-ci.sh
17 - psql -U postgres -c "create extension postgis"
19 - cd $TRAVIS_BUILD_DIR/build
20 - if [[ $TEST_SUITE == "monaco" ]]; then wget --no-verbose --output-document=../data/monaco.osm.pbf http://download.geofabrik.de/europe/monaco-latest.osm.pbf; fi
21 - if [[ $TEST_SUITE == "monaco" ]]; then ./utils/setup.php --osm-file ../data/monaco.osm.pbf --osm2pgsql-cache 1000 --all 2>&1 | grep -v 'ETA (seconds)'; fi
22 - if [[ $TEST_SUITE == "monaco" ]]; then ./utils/specialphrases.php --wiki-import | psql -d test_api_nominatim >/dev/null; fi
23 - cd $TRAVIS_BUILD_DIR/test/php
24 - if [[ $TEST_SUITE == "tests" ]]; then phpunit ./ ; fi
25 - if [[ $TEST_SUITE == "tests" ]]; then phpcs --report-width=120 . ; fi
26 - cd $TRAVIS_BUILD_DIR/test/bdd
27 - # behave --format=progress3 api
28 - if [[ $TEST_SUITE == "tests" ]]; then behave --format=progress3 db ; fi
29 - if [[ $TEST_SUITE == "tests" ]]; then behave --format=progress3 osm2pgsql ; fi