File: tox.ini

package info (click to toggle)
python-pipdeptree 2.2.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 372 kB
  • sloc: python: 1,044; sh: 55; makefile: 30
file content (26 lines) | stat: -rw-r--r-- 395 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
26
# http://tox.readthedocs.org/ - sets up and runs the test suite based on a declarative configuration
[tox]
envlist =
  py39
  py38
  py37
  py36
  py35
  py34
  py27
  pypy3
  pypy2

[testenv]
description = run test suite under {basepython}
commands =
  pytest {posargs:-vv}
deps =
  graphviz
  pip>=8.0.2
  pytest
  pytest-cov
  virtualenv>=20,<21
  mock;python_version<"3"
extras =
  graphviz