-
Notifications
You must be signed in to change notification settings - Fork 86
/
Copy pathsetup.cfg
39 lines (33 loc) · 1 KB
/
setup.cfg
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
[wheel]
universal = 1
[metadata]
license_file = LICENSE
[coverage:run]
branch = True
[coverage:report]
show_missing = True
[tool:pytest]
markers =
local: superset of unit and functional (does not require network access)
unit: mark test as a unit test (does not require network access)
functional: mark test as a functional test (does not require network access)
integ: mark a test as an integration test (requires network access)
accept: mark a test as an acceptance test (requires network access)
examples: mark a test as an examples test (requires network access)
# Flake8 Configuration
[flake8]
max_complexity = 10
max_line_length = 120
import_order_style = google
application_import_names = aws_encryption_sdk
builtins = raw_input
ignore =
# Ignoring D205 and D400 because of false positives
D205, D400,
# Ignoring D401 pending discussion of imperative mood
D401,
# Ignoring W503 : line break before binary operator
W503
# Doc8 Configuration
[doc8]
max-line-length = 120