mirror of
https://github.com/jazzband/django-auditlog.git
synced 2026-03-16 22:20:26 +00:00
* Ignore new testing related files * Add tox testing, coverage and codecov integration. Drop Django 1.9 testing as support officially ended in April, Add Django 1.11 testing, the new LTS version of Django Add testing against Django for each versions supported python versions. Remove Django from requirements, install handled through tox for tests and regular repositories do not need us to install Django for them or enforce a django version, they can choose to use a supported version or not. * Update for python 3.6 tests
20 lines
498 B
INI
20 lines
498 B
INI
[tox]
|
|
envlist =
|
|
{py27,py34,py35,py36}-django-18
|
|
{py27,py34,py35,py36}-django-110
|
|
{py27,py34,py35,py36}-django-111
|
|
|
|
[testenv]
|
|
setenv =
|
|
PYTHONPATH = {toxinidir}:{toxinidir}/src/auditlog
|
|
commands = coverage run --source src/auditlog src/runtests.py
|
|
deps =
|
|
django-18: Django>=1.8,<1.9
|
|
django-110: Django>=1.10,<1.11
|
|
django-111: Django>=1.11
|
|
-r{toxinidir}/requirements-test.txt
|
|
basepython =
|
|
py36: python3.6
|
|
py35: python3.5
|
|
py34: python3.4
|
|
py27: python2.7
|