File: tox.ini

package info (click to toggle)
python-svglib 1.4.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 328 kB
  • sloc: python: 2,717; sh: 6; makefile: 3
file content (26 lines) | stat: -rw-r--r-- 330 bytes parent folder | download | duplicates (2)
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
[tox]
envlist =
    py310
    py39
    py38
    py37
    flake8

[testenv]
deps =
    pytest
commands =
    python -m pytest {posargs}

[testenv:flake8]
basepython = python3.7
deps = flake8
commands =
    flake8 . --count --show-source --statistics

[gh-actions]
python =
    3.7: py37
    3.8: py38
    3.9: py39
    3.10: py310