eventcally/.travis.yml
Daniel Grams d63f340384 Internal/modules (#1)
* Restructured app
* Added Travis CI
* Added 'Deploy to heroku' button
2020-11-13 12:24:26 +01:00

19 lines
387 B
YAML

language: python
python:
- "3.7"
addons:
apt:
packages:
- postgresql-10-postgis-2.5
- postgresql-10-postgis-2.5-scripts
postgresql: '10'
services:
- postgresql
install:
- pip install -r requirements.txt
before_script:
- psql -c 'create database gsevpt_tests;' -U postgres
- psql -c 'create extension postgis;' -U postgres -d gsevpt_tests
script:
- pytest