-
-
Notifications
You must be signed in to change notification settings - Fork 802
Expand file tree
/
Copy pathtox.ini
More file actions
30 lines (29 loc) · 615 Bytes
/
tox.ini
File metadata and controls
30 lines (29 loc) · 615 Bytes
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
[flake8]
exclude =
.git/,
.github/,
.mypy_cache/,
.venv*/,
dev/,
package_control/deps/
ignore =
# missing whitespace around arithmetic operator
E226,
# multiple spaces after ','
E241,
# module level imports not at beginning
E402,
# do not compare types, for exact checks use `is` / `is not`, for instance checks use `isinstance()`
E721,
# possibly unused globals
F824,
# trailing operators before line continuation
W503,
# leading operators after line continuation
W504
max-line-length = 120
[pytest]
minversion = 6.0
addopts = -ra -q
python_files = test_*.py
testpaths = package_control/tests