-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtox.ini
85 lines (75 loc) · 1.66 KB
/
tox.ini
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# Sample usage:
# tox --sitepackages -e reformat,mypy,flake8
# tox --sitepackages -e pydocstyle
# tox --sitepackages -e mypy,flake8,pydocstyle
#
# tox -e reformat,mypy,flake8
# tox -e pydocstyle
# tox -e mypy,flake8,pydocstyle
[main]
src_dir=
notebooks
src
[tox]
envlist = reformat,flake8,pydocstyle
# If no setup.py, then uncomment next line
skipsdist = True
[flake8]
max-line-length = 120
max-complexity = 10
exclude =
build/
.git
__pycache__
.*_cache
examples/
.tox
data/external/
data/interim/
data/processed/
data/raw/
test/data/
test/refdata/
venv/
ignore = E203, W503, E722
[isort]
atomic = True
profile = black
line_length = 120
# Ensure notqdm silencer on the top
known_smepu=smepu
sections=FUTURE,SMEPU,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
[mypy]
ignore_missing_imports = True
files = **/*.py
[pytest]
addopts = --ignore=test/s3fscompat
filterwarnings =
# https://github.com/boto/boto3/issues/1968
ignore:Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated
[testenv:reformat]
# Used during development (before committing) to format .py files.
deps =
autoflake
black
isort
pydocstyle
commands =
autoflake --in-place --recursive --ignore-init-module-imports --remove-unused-variables --remove-all-unused-imports {[main]src_dir}
isort --recursive {[main]src_dir}
black {[main]src_dir}
[testenv:flake8]
deps =
flake8
commands =
flake8 {[main]src_dir}
[testenv:mypy]
deps =
mypy
commands =
mypy --config-file tox.ini {[main]src_dir}
[testenv:pydocstyle]
deps =
pydocstyle
commands =
pydocstyle {[main]src_dir}