forked from BYUCamachoLab/simphony
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
33 lines (29 loc) · 752 Bytes
/
setup.cfg
File metadata and controls
33 lines (29 loc) · 752 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
31
32
33
[tool:pytest]
addopts = --maxfail=2 -rf
testpaths = simphony
console_output_style = progress
filterwarnings =
ignore::UserWarning
ignore::DeprecationWarning
[flake8]
max-line-length = 88
max-complexity = 18
select = B,C,E,F,W,T4,B9
ignore = E203, E266, E501, W503, F403, F401, W605
exclude =
# No need to traverse our git directory
.git,
# There's no value in checking cache directories
__pycache__,
# The conf file is mostly autogenerated, ignore it
docs/source/conf.py,
# The old directory contains Flake8 2.0
old,
# This contains our built documentation
build,
# This contains builds of flake8 that we don't want to check
dist,
.ipynb_checkpoints,
.tox,
extra,
deprecated,