File: tox.ini

package info (click to toggle)
python-pefile 2024.8.26-2.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 63,244 kB
  • sloc: python: 7,066; makefile: 3
file content (24 lines) | stat: -rw-r--r-- 470 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[tox]
envlist = py38,py39,py310,py311,py312,coverage

[testenv]
deps =
    pytest
    coverage
commands =
    python -m coverage run -p -m pytest --ignore=./tests/pefile_test.py

[testenv:coverage]
basepython = python3.10
commands =
    python -m coverage combine
    python -m coverage report -m --skip-covered --ignore-errors
    python -m coverage json --ignore-errors

[gh-actions]
python =
    3.8: py38
    3.9: py39
    3.10: py310
    3.11: py311
    3.12: py312