debian-django-admin-rangefi.../.travis.yml

50 lines
1.5 KiB
YAML
Raw Permalink Normal View History

2016-06-24 12:17:49 +02:00
sudo: false
language: python
2018-10-12 13:56:08 +02:00
cache: pip
2019-04-05 13:27:49 +02:00
dist: xenial
2016-06-24 12:17:49 +02:00
2018-10-12 13:56:08 +02:00
matrix:
fast_finish: true
include:
2018-10-12 14:15:18 +02:00
- { python: "2.7", env: DJANGO_VERSION="1.8.*" }
- { python: "2.7", env: DJANGO_VERSION="1.9.*" }
- { python: "2.7", env: DJANGO_VERSION="1.10.*" }
- { python: "2.7", env: DJANGO_VERSION="1.11.*" }
2018-10-12 13:59:38 +02:00
2018-10-12 14:15:18 +02:00
- { python: "3.4", env: DJANGO_VERSION="1.11.*" }
- { python: "3.4", env: DJANGO_VERSION="2.0.*" }
2018-10-12 13:59:38 +02:00
2018-10-12 14:15:18 +02:00
- { python: "3.5", env: DJANGO_VERSION="1.11.*" }
- { python: "3.5", env: DJANGO_VERSION="2.0.*" }
- { python: "3.5", env: DJANGO_VERSION="2.1.*" }
2019-04-05 13:16:56 +02:00
- { python: "3.5", env: DJANGO_VERSION="2.2.*" }
2018-10-12 13:59:38 +02:00
2018-10-12 14:15:18 +02:00
- { python: "3.6", env: DJANGO_VERSION="1.11.*" }
- { python: "3.6", env: DJANGO_VERSION="2.0.*" }
- { python: "3.6", env: DJANGO_VERSION="2.1.*" }
2019-04-05 13:16:56 +02:00
- { python: "3.6", env: DJANGO_VERSION="2.2.*" }
2019-12-04 09:55:54 +01:00
- { python: "3.6", env: DJANGO_VERSION="3.0.*" }
2018-10-12 13:59:38 +02:00
2019-04-05 13:27:49 +02:00
- { python: "3.7", env: DJANGO_VERSION="2.0.*" }
- { python: "3.7", env: DJANGO_VERSION="2.1.*" }
- { python: "3.7", env: DJANGO_VERSION="2.2.*" }
2019-12-04 09:55:54 +01:00
- { python: "3.7", env: DJANGO_VERSION="3.0.*" }
- { python: "3.8", env: DJANGO_VERSION="2.2.*" }
- { python: "3.8", env: DJANGO_VERSION="3.0.*" }
2016-06-24 12:17:49 +02:00
install:
2018-10-12 14:15:18 +02:00
- pip install Django==${DJANGO_VERSION}
2017-04-12 22:04:24 +02:00
- pip install codecov
2016-06-24 12:22:10 +02:00
- pip install pytz
2016-06-24 12:17:49 +02:00
branches:
only:
- master
script:
2016-08-05 10:42:45 +02:00
- coverage run --omit='setup.py' --source='.' runtests.py
2017-04-12 22:04:24 +02:00
after_success:
- codecov