mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-09 04:20:17 +02:00
* Refactor allianceauth into its own package * Add setup * Add missing default_app_config declarations * Fix timerboard namespacing * Remove obsolete future imports * Remove py2 mock support * Remove six * Add experimental 3.7 support and multiple Dj versions * Remove python_2_unicode_compatible * Add navhelper as local package * Update requirements
24 lines
535 B
YAML
24 lines
535 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: coverage run runtests.py
|
|
cache: pip
|
|
after_success:
|
|
coveralls
|
|
matrix:
|
|
allow_failures:
|
|
- python: "3.7-dev"
|
|
env:
|
|
- DJANGO_VERSION=1.10.8 # Remove in December 2017
|
|
- DJANGO_VERSION=1.11.5
|
|
# Add 2.0 when available and allow_failures (env: KEY=VALUE)
|