summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/UploadWizard/tox.ini
blob: d432c1b8ac97a5b3550a66d1e69a709ead44495d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[tox]

# Ensure 1.6+ is used to support 'skipsdist'
minversion = 1.6

# Do not run install command
skipsdist = True

# Environements to execute when invoking 'tox'
envlist = flake8

[testenv:flake8]
commands = flake8
deps = flake8

[flake8]
exclude = .tox
max_line_length = 120

[pep8]
; E501 line too long
ignore = E501