authentic2-wallonie-connect/tox.ini

47 lines
1.3 KiB
INI

# Tox (http://tox.testrun.org/) is a tool for running tests
# in multiple virtualenvs. This configuration file will run the
# test suite on all supported python versions. To use it, "pip install tox"
# and then run "tox" from this directory.
[tox]
toxworkdir = {env:TMPDIR:/tmp}/tox-{env:USER}/authentic2-wallonie-connect/{env:BRANCH_NAME:}
envlist = py27-dj111-pg-coverage
[testenv]
# django.contrib.auth is not tested it does not work with our templates
basepython = python2
setenv =
AUTHENTIC2_SETTINGS_FILE=tests/settings.py
DJANGO_SETTINGS_MODULE=authentic2.settings
pg: DB_ENGINE=django.db.backends.postgresql_psycopg2
coverage: COVERAGE=--junitxml=test_{envname}_results.xml --cov-report xml --cov-report html --cov=src/ --cov-config .coveragerc
fast: FAST=--nomigrations
usedevelop =
coverage: True
nocoverage: False
deps =
dj111: django>=1.11,<1.12
dj111: django-tables2>=1.1,<2
pg: psycopg2
coverage
pytest-cov
pytest-django<3.4.6
mock
pytest
lxml
cssselect
pylint
pylint-django<0.8.1
django-webtest<1.9.3
WebTest
pyquery
httmock
pytz
requests
pytest-freezegun
http://git.entrouvert.org/authentic.git/snapshot/authentic-master.tar.gz
commands =
./getlasso.sh
dj111: ./pylint.sh src/authentic2_cut
py.test {env:FAST:} {env:COVERAGE:} {posargs:tests/}