File: tox.ini

package info (click to toggle)
hachoir 3.1.0%2Bdfsg-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 3,364 kB
  • sloc: python: 50,349; makefile: 129; sh: 26
file content (28 lines) | stat: -rw-r--r-- 491 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
27
28
[tox]
envlist = py3, pep8, doc

[testenv]
basepython = python3
commands=
    python -bb -Wd -X faulthandler runtests.py

[testenv:pep8]
whitelist_externals = sh
deps = flake8
commands =
    sh tools/flake8.sh

[flake8]
# E501 line too long (88 > 79 characters)
# W503 line break before binary operator
# W504 line break after binary operator
ignore = E501,W503,W504

[testenv:doc]
deps=
    sphinx
whitelist_externals = make
commands=
    python doc/gen_parser_list.py
    make -C doc html