File: tox.ini

package info (click to toggle)
pypdf2 2.12.1-4
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 27,144 kB
  • sloc: python: 28,767; makefile: 119; sh: 2
file content (16 lines) | stat: -rw-r--r-- 412 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[tox]
envlist =
	py{36,37,38,39,310,py3},cov

[testenv]
setenv=
    py{36,37,38,39,310,py3}: COVERAGE_FILE={envdir}/.coverage
deps =
	pillow
	pytest
	pytest-cov
	pycryptodome
commands =
	py{36,37,38,39,310,py3}: pytest tests --cov --cov-report term-missing -vv --no-cov-on-fail {posargs}
	cov: /usr/bin/env bash -c '{envpython} -m coverage combine {toxworkdir}/py*/.coverage'
	cov: coverage html --fail-under=85