-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.cfg
More file actions
54 lines (48 loc) · 1.49 KB
/
setup.cfg
File metadata and controls
54 lines (48 loc) · 1.49 KB
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
# * File: /home/geoff/KTDA/setup.cfg
# * Project: /home/geoff/KTDA
# * Created Date: Saturday, May 7th 2022, 2:23:00 pm
# * Author: Geoffrey Nyaga Kinyua ( <geoffrey@swiftlab.tech> )
# * -----
# * Last Modified: Saturday May 7th 2022 2:23:00 pm
# * Modified By: Geoffrey Nyaga Kinyua ( <geoffrey@swiftlab.tech> )
# * -----
# * This file should not be copied and/or distributed without the express
# * permission of Swift Lab Limited.
# * -----
# * Copyright (c) 2022 Swift Lab Limited.
[tool.isort]
profile = "black"
[isort]
default_section = THIRDPARTY
known_first_party = KTDA # change it for the name of your django project
known_django = django
sections = FUTURE,STDLIB,DJANGO,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
[tool:pytest]
DJANGO_SETTINGS_MODULE = Yiakunte.settings.local_testing
# --strict: warnings become errors.
# -r fEsxXw: show extra test summary info for everything.
addopts = --nomigrations --ignore=venv/ --ignore=UI/ --ignore=NATIVE/ --ignore=lib --ignore=bin --ignore=include --ignore include/ --disable-pytest-warnings --cov=. --cov-report=html -v
# omit = .venv/ UI/ NATIVE/ lib/ bin/ include/
#omit = [
#.venv/*,
#.tox/*,
#.git/*,
#.idea/*,
#.eggs/*,
#.mypy_cache/*,
#.pytest_cache/*,
#__pycache__/*,
#*/migrations/*,
#*/__pycache__/*,
#*/.pytest_cache/*,
#.UI/*,
#.NATIVE/*,
#
#]
# -- recommended but optional:
python_files = tests.py test_*.py *_tests.py
norecursedirs = env venv lib bin include
#console_output_style = progress
testpaths = accounts
[report]
report_missing = True