forked from mozilla/addons-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
51 lines (47 loc) · 919 Bytes
/
setup.cfg
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
50
[pytest]
addopts = -vs --reuse-db --showlocals --tb=short
python_files=test*.py
markers =
es_tests: mark a test as an elasticsearch test.
norecursedirs =
node_modules locale static media site-static user-media tmp
templates fixtures migrations
.* *.egg dist cache venv __pycache__
tests/ui
DJANGO_SETTINGS_MODULE = settings_test
[flake8]
ignore = F999,F405
exclude =
services,
src/olympia/wsgi.py,
docs,
node_modules,
.npm,
build*.py
.tox,
media,
user-media,
logs,
tmp,
site-static,
static,
.git
[coverage:run]
branch = True
source =
src/olympia/
services/
include =
src/olympia/*
services/*
omit =
src/olympia/conf/*/settings.py
src/olympia/urls.py
src/olympia/*/urls.py
src/olympia/wsgi.py
src/olympia/*/migrations/*
[coverage:report]
ignore_errors = True
show_missing = True
exclude_lines =
pragma: no cover