mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-09 04:20:17 +02:00
22 lines
526 B
INI
22 lines
526 B
INI
[tox]
|
|
skipsdist = true
|
|
usedevelop = true
|
|
envlist = py{35,36,37}-dj{2X}
|
|
|
|
[testenv]
|
|
setenv =
|
|
DJANGO_SETTINGS_MODULE = settings
|
|
basepython =
|
|
py35: python3.5
|
|
py36: python3.6
|
|
py37: python3.7
|
|
deps=
|
|
coverage
|
|
dj2X: Django>=2.0,<3.0
|
|
py37: https://github.com/yaml/pyyaml/zipball/master#egg=pyyaml
|
|
py37: https://github.com/celery/kombu/zipball/master#egg=kombu
|
|
install_command = pip install -e ".[testing]" -U {opts} {packages}
|
|
commands =
|
|
coverage run runtests.py -v 2
|
|
coverage report -m
|