File: tox.ini

package info (click to toggle)
python-libarchive-c 5.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 908 kB
  • sloc: python: 1,552; makefile: 7
file content (14 lines) | stat: -rw-r--r-- 286 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
[tox]
envlist=py38,py39,py310,py311
skipsdist=True

[testenv]
passenv = LIBARCHIVE
commands=
    python -m pytest -Wd -vv --forked --cov libarchive --cov-report term-missing {toxinidir}/tests {posargs}
    flake8 {toxinidir}
deps=
    flake8
    pytest
    pytest-cov
    pytest-forked