-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathsetup.cfg
More file actions
49 lines (43 loc) · 992 Bytes
/
Copy pathsetup.cfg
File metadata and controls
49 lines (43 loc) · 992 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[flake8]
ignore = N802,W503,E402,E203
max-line-length = 160
exclude = .venv,migrations,.ropeproject,static,_static,build
[isort]
combine_as_imports = true
default_section = THIRDPARTY
include_trailing_comma = true
known_third_party = eventyay
known_standard_library = typing
multi_line_output = 5
not_skip = __init__.py
skip = setup.py
[tool:pytest]
DJANGO_SETTINGS_MODULE = eventyay.config.settings
testpaths = tests
[pytest_env]
EVY_RUNNING_ENVIRONMENT = testing
EVY_POSTGRES_HOST = localhost
EVY_POSTGRES_PORT = 5432
EVY_POSTGRES_USER = postgres
EVY_POSTGRES_PASSWORD = postgres
EVY_POSTGRES_DB = eventyay-db
[coverage:run]
source = eventyay_exhibition
omit = */migrations/*,*/urls.py,*/tests/*
[coverage:report]
exclude_lines =
pragma: no cover
def __str__
def __repr__
if settings.DEBUG
NOQA
NotImplementedError
[check-manifest]
ignore =
.update-locales
.update-locales.sh
.install-hooks.sh
Makefile
pytest.ini
manage.py
tests/*