mirror of
https://github.com/frappe/gunicorn.git
synced 2026-01-14 11:09:11 +08:00
45 lines
919 B
YAML
45 lines
919 B
YAML
test-warnings: true
|
|
|
|
ignore-paths:
|
|
- gunicorn/_compat.py
|
|
- gunicorn/argparse_compat.py
|
|
- gunicorn/selectors.py
|
|
- gunicorn/six.py
|
|
- build
|
|
- docs
|
|
- examples
|
|
- scripts
|
|
- tests/requests/valid
|
|
- tests/requests/invalid
|
|
- tests/treq.py # We are going to replace this with pytest.
|
|
- tests/t.py # Same as above.
|
|
- tests/test_selectors.py # This basically port of upstream selectors tests.
|
|
- tests/test_gaiohttp.py # TODO: We are going to remove this worker.
|
|
|
|
pep8:
|
|
run: false
|
|
|
|
pyflakes:
|
|
run: false
|
|
|
|
pylint:
|
|
disable:
|
|
- bare-except
|
|
- misplaced-comparison-constant
|
|
- protected-access
|
|
- import-error
|
|
- too-many-branches
|
|
- too-many-arguments
|
|
- too-many-nested-blocks
|
|
- eval-used
|
|
- no-else-return
|
|
- wrong-import-position
|
|
- unused-argument
|
|
- import-self
|
|
- duplicate-bases
|
|
- no-staticmethod-decorator
|
|
- not-callable
|
|
|
|
mccabe:
|
|
run: false
|