File: tox.ini

package info (click to toggle)
python-pytest-timeout 2.3.1-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 244 kB
  • sloc: python: 691; makefile: 8; sh: 4
file content (25 lines) | stat: -rw-r--r-- 428 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
[pytest]
minversion = 7.0
addopts = -ra

[tox]
envlist = py37,py38,py39,py310,py311,py312,pypy3

[testenv]
deps = pytest
    pexpect
    ipdb
    pytest-cov
    pytest-github-actions-annotate-failures
commands = pytest {posargs}

[testenv:linting]
skip_install = True
basepython = python3
deps = pre-commit>=1.11.0
commands = pre-commit run --all-files --show-diff-on-failure


[flake8]
disable-noqa = True
max-line-length = 88