File: tox.ini

package info (click to toggle)
python-mistletoe 1.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 828 kB
  • sloc: python: 5,663; sh: 66; makefile: 40
file content (16 lines) | stat: -rw-r--r-- 417 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[flake8]
# See https://www.flake8rules.com/ for the full list of error codes.
extend-ignore = E124,E126,E127,E128,E501

# For the case we activated E501. The GitHub editor is 127 chars wide.
max-line-length = 127

max-complexity = 10

[testenv]
# Configuration for tox - see https://tox.wiki/en/latest/config.html.
deps =
    -r requirements.txt
    -r test-requirements.txt
commands =
    python -m pytest {posargs}