forked from espnet/espnet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
23 lines (18 loc) · 711 Bytes
/
setup.cfg
File metadata and controls
23 lines (18 loc) · 711 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[aliases]
test=pytest
[tool:pytest]
addopts = --cov-config=.coveragerc --verbose --durations=0 --cov=espnet --cov=espnet2
testpaths = test
execution_timeout = 2.0
# [H238] old style class declaration, use new style (inherit from `object`)
# [H102 H103] Newly contributed Source Code should be licensed under the Apache 2.0 license. All source files should have the following header::
# [W504] Line break occurred after a binary operator
# Black says "W503, E203 is incompatible with PEP 8"
# [W503] Line break occurred before a binary operator
# [E203] whitespace before :
[flake8]
ignore = H102,H103,W503,H238,E203
max-line-length = 88
[pycodestyle]
ignore = H102,H103,W503,H238,E203
max-line-length = 88