Travis stuff

This commit is contained in:
Yohan Boniface 2021-05-30 19:31:42 +02:00
parent 1200b82838
commit ebf0dee216
2 changed files with 22 additions and 9 deletions

View file

@ -1,21 +1,22 @@
sudo: false
os: linux
language: python
dist: xenial
dist: focal
python:
- "3.6"
- "3.7"
- "3.8"
- "3.9"
services:
- postgresql
- postgresql
addons:
postgresql: "9.6"
apt:
packages:
- libgdal-dev
- postgresql-9.6-postgis-2.4
- postgresql-12-postgis-3
env:
- UMAP_SETTINGS=umap/tests/settings.py
global:
- PGPORT=5432
- UMAP_SETTINGS=umap/tests/settings.py
install:
- pip install .
- pip install -r requirements-dev.txt
@ -23,7 +24,7 @@ script: make test
notifications:
irc:
channels:
- "irc.freenode.net#umap"
- "irc.libera.chat#umap"
on_success: change
on_failure: always
email: false

View file

@ -1,4 +1,16 @@
from umap.settings.base import * # pylint: disable=W0614,W0401
import os
SECRET_KEY = 'justfortests'
from umap.settings.base import * # pylint: disable=W0614,W0401
SECRET_KEY = "justfortests"
COMPRESS_ENABLED = False
if "TRAVIS" in os.environ:
DATABASES = {
"default": {
"ENGINE": "django.contrib.gis.db.backends.postgis",
"NAME": "umap",
"PORT": 5433,
"USER": "travis",
}
}