forked from xhtml2pdf/xhtml2pdf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
32 lines (31 loc) · 835 Bytes
/
tox.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[tox]
envlist =
py{3.5,3.6,3.7,3.8,pypy3}-rl{30,31,32,33,34,35,36}
develop
[testenv]
basepython =
py3.5: python3.5
py3.6: python3.6
py3.7: python3.7
py3.8: python3.8
pypypy3: pypy3
commands =
{envpython} -c "from reportlab import Version; print('%s %s' % ('Reportlab Version', Version))"
{envpython} -m nose.core --with-xunit --with-coverage --cover-package=xhtml2pdf
coverage run -a testrender/testrender.py
coverage report
deps =
Pillow>=2.0
coverage
html5lib>=1.0
nose
pyPdf2
rl30: reportlab>=3.3.0,<3.4.0
rl31: reportlab>=3.4.0,<3.5.0
rl32: reportlab>=3.5.0,<3.5.10
rl33: reportlab>=3.5.10,<3.5.30
rl34: reportlab>=3.5.30,<3.5.40
rl35: reportlab>=3.5.40,<3.5.45
rl36: reportlab>=3.5.45,<3.5.48
[testenv:develop]
deps = -rrequirements.txt