allianceauth/.travis.yml
Basraah 786859294d Restructure Alliance Auth package (#867)
* 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
2017-09-19 09:46:40 +10:00

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)