forked from xhtml2pdf/xhtml2pdf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
30 lines (29 loc) · 752 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.7,3.8,3.9,3.10}
develop
[testenv]
python =
py3.7: python3.7
py3.8: python3.8
py3.9: python3.9
py3.10: python3.10
# pypypy3: pypy3
commands =
python -c 'print("#"*10);import sys;print(sys.version_info);print("#"*10, "\n"*3)'
python -c "from reportlab import Version; print('%s %s' % ('Reportlab Version', Version))"
coverage run -m unittest discover tests
coverage run -a testrender/testrender.py --nofail --only-errors
deps =
arabic-reshaper>=3.0.0
coverage>=5.3
html5lib>=1.1
Pillow>=8.1.1
PyPDF3>=1.0.5
python-bidi>=0.4.2
reportlab>=3.5.53
svglib>=1.2.1
pyHanko>=0.12.1
pyhanko-certvalidator>=0.19.5
[testenv:develop]
deps = -rrequirements.txt