File: tox.ini

package info (click to toggle)
python-internetarchive 3.3.0-2~deb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,096 kB
  • sloc: python: 6,276; xml: 180; makefile: 180
file content (23 lines) | stat: -rw-r--r-- 391 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
[tox]
envlist = py37,py38,py39,py310,py311,pypy37,pypy38,pypy39

[testenv]
deps = -r tests/requirements.txt
# See setup.cfg for changes to default settings
commands = flake8
           pytest {posargs}

[testenv:py37]
basepython=python3.7

[testenv:py38]
basepython=python3.8

[testenv:py39]
basepython=python3.9

[testenv:py310]
basepython=python3.10

[testenv:py311]
basepython=python3.11