File: tox.ini

package info (click to toggle)
humanfriendly 10.0-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,056 kB
  • sloc: python: 3,212; makefile: 67; sh: 33
file content (22 lines) | stat: -rw-r--r-- 584 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Tox (http://tox.testrun.org/) is a tool for running tests in multiple
# virtualenvs. This configuration file will run the test suite on all supported
# python versions. To use it, "pip install tox" and then run "tox" from this
# directory.

[tox]
envlist = py27, py35, py36, py37, py38, py39, pypy

[testenv]
deps = -rrequirements-tests.txt
commands = py.test {posargs}
passenv = HOME

[pytest]
addopts = --verbose
norecursedirs = .tox
python_files = humanfriendly/tests.py

[flake8]
exclude = .tox
extend-ignore = D200,D205,D211,D400,D401,D402,D412,D413,W504
max-line-length = 120