File: setup.cfg

package info (click to toggle)
python-django-celery-beat 2.8.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,112 kB
  • sloc: python: 3,440; makefile: 319; sh: 22
file content (16 lines) | stat: -rw-r--r-- 388 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[tool:pytest]
testpaths = t/unit/
python_classes = test_*
DJANGO_SETTINGS_MODULE=t.proj.settings

[flake8]
# classes can be lowercase, arguments and variables can be uppercase
# whenever it makes the code more readable.
ignore = N806, N802, N801, N803, W503, W504
exclude =
    **/migrations/*.py
max-line-length = 88

[pep257]
ignore = D102,D104,D203,D105,D213
match-dir = [^migrations]