trytond-sale_salesman/tox.ini

20 lines
461 B
INI
Raw Permalink Normal View History

2016-03-29 11:58:54 +02:00
[tox]
2020-04-11 18:24:12 +02:00
envlist = py37-sqlite, stats
2016-03-29 11:58:54 +02:00
[testenv]
2020-04-11 18:24:12 +02:00
basepython=python3.7
commands = coverage run setup.py test
2016-03-29 11:58:54 +02:00
deps =
2018-02-14 16:59:35 +01:00
sqlite: sqlitebck
2020-04-11 18:24:12 +02:00
coverage
2016-03-29 11:58:54 +02:00
setenv =
sqlite: TRYTOND_DATABASE_URI={env:SQLITE_URI:sqlite://}
sqlite: DB_NAME={env:SQLITE_NAME::memory:}
2020-04-11 18:24:12 +02:00
install_command = pip install --pre --find-links https://trydevpi.tryton.org/ {opts} {packages}
[testenv:stats]
basepython=python3.7
commands =
coverage report --omit=.tox/*
coverage xml