forked from xhtml2pdf/xhtml2pdf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
30 lines (29 loc) · 768 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
[tox]
envlist =
py{3.5,3.6,3.7,3.8,pypy3}-rl{330,340,350,3510,3530,3550}
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))"
coverage run -m unittest discover tests
coverage run -a testrender/testrender.py
coverage report
deps =
Pillow>=2.0
coverage
html5lib>=1.0.1
pyPdf2
rl330: reportlab>=3.3.0,<3.4.0
rl340: reportlab>=3.4.0,<3.5.0
rl350: reportlab>=3.5.0,<3.5.10
rl3510: reportlab>=3.5.10,<3.5.30
rl3530: reportlab>=3.5.30,<3.5.50
rl3550: reportlab>=3.5.50,<=3.5.53
[testenv:develop]
deps = -rrequirements.txt