blob: 3d01e102262936e59e9be0fbc03deeee2d82d1e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
[tox]
envlist = flake8
skipsdist = True
[testenv]
deps = -rrequirements.txt
basepython = python3
# Store flake8 config here intead of .flake8
[flake8]
ignore =
# Ignore 'line-too-long' warnings
E501
exclude =
src/manage.py
[testenv:flake8]
deps =
-rrequirements.txt
flake8
commands = flake8 src/
|