mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-20 01:32:31 +02:00
28 lines
619 B
YAML
28 lines
619 B
YAML
language: python
|
|
python:
|
|
- "3.5"
|
|
- "3.6"
|
|
- "3.7-dev"
|
|
# command to install dependencies
|
|
install:
|
|
- pip install requests
|
|
- pip install Django==$DJANGO_VERSION
|
|
- pip install -r requirements.txt
|
|
- pip install -r testing-requirements.txt
|
|
# command to run tests
|
|
script:
|
|
- django-admin version
|
|
- coverage run runtests.py
|
|
cache: pip
|
|
after_success:
|
|
coveralls
|
|
matrix:
|
|
allow_failures:
|
|
- python: "3.7-dev"
|
|
- env: DJANGO_VERSION=2.0a1
|
|
env:
|
|
- DJANGO_VERSION=1.10.8 # Remove in December 2017
|
|
- DJANGO_VERSION=1.11.5
|
|
- DJANGO_VERSION=2.0a1
|
|
# Add 2.0 when available and allow_failures (env: KEY=VALUE)
|