umap/.travis.yml

33 lines
450 B
YAML
Raw Normal View History

2021-05-30 12:31:42 -05:00
os: linux
2017-05-10 04:12:10 -05:00
language: python
2021-05-30 12:31:42 -05:00
dist: focal
2017-05-10 04:12:10 -05:00
python:
- "3.6"
- "3.7"
- "3.8"
- "3.9"
2017-05-10 04:12:10 -05:00
services:
2021-05-30 12:31:42 -05:00
- postgresql
addons:
apt:
packages:
- libgdal-dev
2021-05-30 12:31:42 -05:00
- postgresql-12-postgis-3
2017-05-10 04:12:10 -05:00
env:
2021-05-30 12:31:42 -05:00
global:
- PGPORT=5432
- UMAP_SETTINGS=umap/tests/settings.py
2017-05-10 04:12:10 -05:00
install:
2021-12-29 10:54:15 -06:00
- make develop
2017-05-10 04:12:10 -05:00
script: make test
notifications:
irc:
channels:
2021-05-30 12:31:42 -05:00
- "irc.libera.chat#umap"
2017-05-10 04:12:10 -05:00
on_success: change
on_failure: always
email: false
branches:
only:
- master