-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
37 lines (32 loc) · 980 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
[pytest]
markers =
integration: mark a test as an integration test.
# By default, run with verbose on and show detail for skipped and xfail tests.
# The confcutdir argument tells pytest to load conftest.py starting from
# the unittest directory
addopts = -rsxX -v --confcutdir tests
# We need py.test >=2.5 (for yield_fixtures)
minversion = 2.5
# Don't look in these directories for tests
norecursedirs=venv* .git .hg build doc *.egg-info
[flake8]
# Ingore errors relating to naming conventions. Will be picked up by pylint
ignore = N801,N802,N804,N805,N806
[build_sphinx]
source-dir = doc/
build-dir = doc/_build
all_files = 1
[bdist_wheel]
# This flag says that the code is written to work on both Python 2 and Python
# 3 so a universal wheel can be built.
universal = 1
[isort]
combine-star = 1
balanced_wrapping = 1
default_section = FIRSTPARTY
indent = ' '
known_future_library = future
line_length = 79
multi_line_output = 5
order_by_type = true
verbose = true