mirror of
https://github.com/Hopiu/django-modeltranslation.git
synced 2026-05-10 22:33:09 +00:00
53 lines
1.3 KiB
YAML
53 lines
1.3 KiB
YAML
language: python
|
|
dist: xenial
|
|
services:
|
|
- mysql
|
|
- postgresql
|
|
python:
|
|
- "2.7"
|
|
- "3.5"
|
|
- "3.6"
|
|
- "3.7"
|
|
env:
|
|
- DJANGO=1.11 DB=sqlite
|
|
- DJANGO=1.11 DB=postgres
|
|
- DJANGO=1.11 DB=mysql
|
|
- DJANGO=2.0 DB=sqlite
|
|
- DJANGO=2.0 DB=postgres
|
|
- DJANGO=2.0 DB=mysql
|
|
- DJANGO=2.1 DB=sqlite
|
|
- DJANGO=2.1 DB=postgres
|
|
- DJANGO=2.1 DB=mysql
|
|
matrix:
|
|
exclude:
|
|
- python: "2.7"
|
|
env: DJANGO=2.0 DB=sqlite
|
|
- python: "2.7"
|
|
env: DJANGO=2.0 DB=mysql
|
|
- python: "2.7"
|
|
env: DJANGO=2.0 DB=postgres
|
|
- python: "2.7"
|
|
env: DJANGO=2.1 DB=sqlite
|
|
- python: "2.7"
|
|
env: DJANGO=2.1 DB=mysql
|
|
- python: "2.7"
|
|
env: DJANGO=2.1 DB=postgres
|
|
before_install:
|
|
- pip install -q 'flake8<3'
|
|
- PYFLAKES_NODOCTEST=1 flake8 modeltranslation
|
|
before_script:
|
|
- mysql -e 'create database modeltranslation;'
|
|
- psql -c 'create database modeltranslation;' -U postgres
|
|
install:
|
|
- if [[ $DB == mysql ]]; then pip install -q mysqlclient; fi
|
|
- if [[ $DB == postgres ]]; then pip install -q psycopg2; fi
|
|
- pip install -q Pillow
|
|
- IDJANGO=$(./travis.py $DJANGO)
|
|
- pip install -q $IDJANGO
|
|
- pip install -e .
|
|
- pip install -q coveralls
|
|
script:
|
|
- django-admin.py --version
|
|
- coverage run --source=modeltranslation ./runtests.py
|
|
after_success:
|
|
coveralls
|