File: tox.ini

package info (click to toggle)
python-baron 0.10.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 2,080 kB
  • sloc: python: 26,926; makefile: 126; sh: 27
file content (27 lines) | stat: -rw-r--r-- 421 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
24
25
26
27
[tox]
envlist=py2,py3,flake8,check-manifest

[testenv]
commands =
  pytest {posargs:{toxinidir}/tests}
deps =
 pytest
 -r requirements.txt

[testenv:flake8]
skip_install = true
deps =
  flake8
commands = flake8

[flake8]
format = pylint
ignore = E501,E218,W503
exclude = docs/*,.tox/*,ve/*,ve3/*

[testenv:check-manifest]
skip_install = true
deps =
  check-manifest
commands =
  {envpython} -m check_manifest {toxinidir}