File: tox.ini

package info (click to toggle)
python-autopage 0.6.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 216 kB
  • sloc: python: 1,795; makefile: 10
file content (23 lines) | stat: -rw-r--r-- 431 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 = pep8,mypy,pypy3,py36,py37,py38,py39,py310,py311,py312,py313,py314,py315
isolated_build = true

[testenv]
deps =
    pytest
    fixtures
    fixtures[streams]
    pip>=19;python_version<'3.7'
    testtools;python_version<'3.10'
commands =
    pytest {posargs}

[testenv:pep8]
deps = flake8
commands =
    flake8 {posargs} autopage

[testenv:mypy]
deps = mypy>=1.5.0,<1.20.0
commands =
    mypy -p autopage {posargs}