martin/.travis.yml

21 lines
416 B
YAML
Raw Normal View History

2017-10-15 14:48:23 +03:00
language: rust
cache: cargo
2018-01-18 13:42:06 +03:00
branches:
except:
- /^v[0-9]/
services:
- postgresql
env:
- DATABASE_URL=postgres://postgres@localhost/test
before_script:
- psql -U postgres -c 'create database test'
- psql -U postgres -d test -c 'create extension postgis'
- psql -U postgres -d test -f fixtures/tilebbox.sql
- psql -U postgres -d test -f fixtures/points.sql
2017-10-15 14:48:23 +03:00
script:
- cargo test --verbose --all