Support for <animacja> in HTML.
[librarian.git] / tox.ini
1 [tox]
2 envlist =
3     clean,
4     py{27,34,35,36,37},
5     stats
6
7 [testenv]
8 deps =
9     nose
10     coverage
11 passenv = HOME  ; Needed to find locally installed fonts when testing PDF production.
12 commands =
13     nosetests --with-coverage --cover-package=librarian -d --with-doctest --with-xunit --exe
14 install_command = pip install --extra-index-url https://py.mdrn.pl/simple {packages}
15
16 [testenv:clean]
17 basepython = python2
18 commands =
19     coverage erase
20 deps = coverage
21
22 [testenv:stats]
23 basepython = python2
24 commands =
25     coverage report
26     coverage html
27 deps = coverage
28