umap/.travis.yml

32 lines
465 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:
2024-01-29 12:36:05 -06:00
- '3.10'
- '3.11'
- '3.12'
2017-05-10 04:12:10 -05:00
services:
2021-05-30 12:31:42 -05:00
- postgresql
addons:
apt:
packages:
2024-01-29 12:36:05 -06:00
- libgdal-dev
- postgresql-12-postgis-3
2017-05-10 04:12:10 -05:00
env:
2021-05-30 12:31:42 -05:00
global:
2024-01-29 12:36:05 -06:00
- PGPORT=5432
- UMAP_SETTINGS=umap/tests/settings.py
2017-05-10 04:12:10 -05:00
install:
2024-01-29 12:36:05 -06:00
- make develop
2017-05-10 04:12:10 -05:00
script: make test
notifications:
irc:
channels:
2024-01-29 12:36:05 -06:00
- 'irc.libera.chat#umap'
2017-05-10 04:12:10 -05:00
on_success: change
on_failure: always
email: false
branches:
only:
2024-01-29 12:36:05 -06:00
- master