mirror of
https://github.com/lucaspalomodevelop/eventcally.git
synced 2026-03-13 00:07:22 +00:00
21 lines
432 B
YAML
21 lines
432 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 --cov=project
|
|
after_success:
|
|
— coveralls
|