File: tox.ini

package info (click to toggle)
python-autopage 0.4.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 168 kB
  • sloc: python: 814; makefile: 10
file content (20 lines) | stat: -rw-r--r-- 289 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
[tox]
envlist = pep8,mypy,pypy3,py36,py37,py38,py39
isolated_build = true

[testenv]
deps =
    pytest
    fixtures
commands =
    pytest

[testenv:pep8]
deps = flake8
commands =
    flake8 autopage

[testenv:mypy]
deps = mypy>=0.800,<0.900
commands =
    mypy -p autopage --exclude=tests