-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.cfg
62 lines (55 loc) · 1.17 KB
/
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
51
52
53
54
55
56
57
58
59
60
61
[metadata]
name = openrepairplatform
version = 0.0.1
author = Hashbang
url = https://gitlab.com/hashbangfr/openrepairplatform
[tool:pytest]
DJANGO_SETTINGS_MODULE = openrepairplatform.settings.tests
addopts = --reuse-db --cov-report xml --cov-report term-missing --cov=openrepairplatform --disable-pytest-warnings --flake8
[flake8]
exclude = ./*/migrations/*,venv
[coverage:run]
omit = */wsgi.py,
manage.py,
*/conftest.py,
*/migrations/*,
*/tests/*,
*/api/views.py,
*/admin.py,
*/settings/*,
*/urls.py,
*/assets.py,
*/app/apps.py
[options]
packages = find:
install_requires =
django
lxml
weasyprint
django-simple-history
djangorestframework
psycopg2
django-bootstrap-static
django-assets
cssmin
jsmin
django-bootstrap4
raven
sorl-thumbnail
django-tinymce
bleach
tests_require =
factory-boy
pytest-cov
pytest-flake8
pytest-django
diff-cover
pytest-factoryboy
[options.extras_require]
test =
factory-boy
pytest-cov
pytest-flake8
pytest-django
pytest-factoryboy
diff-cover