forked from pyinfra-dev/pyinfra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
43 lines (33 loc) · 787 Bytes
/
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
40
41
42
43
[bdist_wheel]
universal = 1
[flake8]
exclude = .git,venv,build
ignore = W503,C815,C816
# See: https://github.com/PyCQA/pycodestyle/issues/373
extend-ignore = E203
max-line-length = 100
# flake8-quotes
inline-quotes = double
multiline-quotes = double
docstring-quotes = double
# flake8-import-order
import-order-style = edited
application-import-names = pyinfra,pyinfra_cli,docs
# flake8-spellcheck
whitelist = tests/words.txt
dictionaries=en_US,python,technical,django
[coverage:report]
show_missing = true
skip_covered = true
precision = 1
include = pyinfra/*, pyinfra_cli/*
[coverage:run]
concurrency = gevent
[tool:pytest]
# Skip end-to-end tests by default
addopts = -m'not end_to_end'
markers =
end_to_end
end_to_end_docker
end_to_end_local
end_to_end_ssh