edc-test-settings 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- edc-test-settings-0.1.0/.coveragerc +4 -0
- edc-test-settings-0.1.0/.editorconfig +25 -0
- edc-test-settings-0.1.0/.gitignore +111 -0
- edc-test-settings-0.1.0/.pre-commit-config.yaml +49 -0
- edc-test-settings-0.1.0/.yamllint +13 -0
- edc-test-settings-0.1.0/AUTHORS +0 -0
- edc-test-settings-0.1.0/CHANGES +0 -0
- edc-test-settings-0.1.0/LICENSE +674 -0
- edc-test-settings-0.1.0/MANIFEST.in +4 -0
- edc-test-settings-0.1.0/PKG-INFO +41 -0
- edc-test-settings-0.1.0/README.rst +19 -0
- edc-test-settings-0.1.0/codecov.yml +12 -0
- edc-test-settings-0.1.0/edc_test_settings/__init__.py +0 -0
- edc-test-settings-0.1.0/edc_test_settings/apps.py +9 -0
- edc-test-settings-0.1.0/edc_test_settings/default_installed_apps.py +62 -0
- edc-test-settings-0.1.0/edc_test_settings/default_test_settings.py +310 -0
- edc-test-settings-0.1.0/edc_test_settings/func_main.py +22 -0
- edc-test-settings-0.1.0/edc_test_settings.egg-info/PKG-INFO +41 -0
- edc-test-settings-0.1.0/edc_test_settings.egg-info/SOURCES.txt +23 -0
- edc-test-settings-0.1.0/edc_test_settings.egg-info/dependency_links.txt +1 -0
- edc-test-settings-0.1.0/edc_test_settings.egg-info/not-zip-safe +1 -0
- edc-test-settings-0.1.0/edc_test_settings.egg-info/top_level.txt +1 -0
- edc-test-settings-0.1.0/pyproject.toml +77 -0
- edc-test-settings-0.1.0/setup.cfg +46 -0
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
; This file is for unifying the coding style for different editors and IDEs.
|
|
2
|
+
; More information at http://EditorConfig.org
|
|
3
|
+
|
|
4
|
+
root = true
|
|
5
|
+
|
|
6
|
+
[*]
|
|
7
|
+
charset = utf-8
|
|
8
|
+
indent_style = space
|
|
9
|
+
end_of_line = lf
|
|
10
|
+
insert_final_newline = true
|
|
11
|
+
max_line_length = 95
|
|
12
|
+
trim_trailing_whitespace = true
|
|
13
|
+
|
|
14
|
+
[*.{py,rst,ini}]
|
|
15
|
+
indent_size = 4
|
|
16
|
+
|
|
17
|
+
[*.{html,yml}]
|
|
18
|
+
indent_size = 2
|
|
19
|
+
|
|
20
|
+
[LICENSE.txt]
|
|
21
|
+
end_of_line = crlf
|
|
22
|
+
insert_final_newline = false
|
|
23
|
+
|
|
24
|
+
[Makefile]
|
|
25
|
+
indent_style = tab
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
_version.py
|
|
2
|
+
.etc
|
|
3
|
+
.project
|
|
4
|
+
.pydevproject
|
|
5
|
+
.settings/
|
|
6
|
+
.env
|
|
7
|
+
|
|
8
|
+
# Byte-compiled / optimized / DLL files
|
|
9
|
+
__pycache__/
|
|
10
|
+
*.py[cod]
|
|
11
|
+
*$py.class
|
|
12
|
+
|
|
13
|
+
# C extensions
|
|
14
|
+
*.so
|
|
15
|
+
|
|
16
|
+
# Distribution / packaging
|
|
17
|
+
.Python
|
|
18
|
+
build/
|
|
19
|
+
develop-eggs/
|
|
20
|
+
dist/
|
|
21
|
+
downloads/
|
|
22
|
+
eggs/
|
|
23
|
+
.eggs/
|
|
24
|
+
lib/
|
|
25
|
+
lib64/
|
|
26
|
+
parts/
|
|
27
|
+
sdist/
|
|
28
|
+
var/
|
|
29
|
+
wheels/
|
|
30
|
+
*.egg-info/
|
|
31
|
+
.installed.cfg
|
|
32
|
+
*.egg
|
|
33
|
+
MANIFEST
|
|
34
|
+
|
|
35
|
+
# PyInstaller
|
|
36
|
+
# Usually these files are written by a python script from a template
|
|
37
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
38
|
+
*.manifest
|
|
39
|
+
*.spec
|
|
40
|
+
|
|
41
|
+
# Installer logs
|
|
42
|
+
pip-log.txt
|
|
43
|
+
pip-delete-this-directory.txt
|
|
44
|
+
|
|
45
|
+
# Unit test / coverage reports
|
|
46
|
+
htmlcov/
|
|
47
|
+
.tox/
|
|
48
|
+
.coverage
|
|
49
|
+
.coverage.*
|
|
50
|
+
.cache
|
|
51
|
+
nosetests.xml
|
|
52
|
+
coverage.xml
|
|
53
|
+
*.cover
|
|
54
|
+
.hypothesis/
|
|
55
|
+
.pytest_cache/
|
|
56
|
+
|
|
57
|
+
# Translations
|
|
58
|
+
*.mo
|
|
59
|
+
*.pot
|
|
60
|
+
|
|
61
|
+
# Django stuff:
|
|
62
|
+
*.log
|
|
63
|
+
local_settings.py
|
|
64
|
+
db.sqlite3
|
|
65
|
+
|
|
66
|
+
# Flask stuff:
|
|
67
|
+
instance/
|
|
68
|
+
.webassets-cache
|
|
69
|
+
|
|
70
|
+
# Scrapy stuff:
|
|
71
|
+
.scrapy
|
|
72
|
+
|
|
73
|
+
# Sphinx documentation
|
|
74
|
+
docs/_build/
|
|
75
|
+
|
|
76
|
+
# PyBuilder
|
|
77
|
+
target/
|
|
78
|
+
|
|
79
|
+
# Jupyter Notebook
|
|
80
|
+
.ipynb_checkpoints
|
|
81
|
+
|
|
82
|
+
# pyenv
|
|
83
|
+
.python-version
|
|
84
|
+
|
|
85
|
+
# celery beat schedule file
|
|
86
|
+
celerybeat-schedule
|
|
87
|
+
|
|
88
|
+
# SageMath parsed files
|
|
89
|
+
*.sage.py
|
|
90
|
+
|
|
91
|
+
# Environments
|
|
92
|
+
.env
|
|
93
|
+
.venv
|
|
94
|
+
env/
|
|
95
|
+
venv/
|
|
96
|
+
ENV/
|
|
97
|
+
env.bak/
|
|
98
|
+
venv.bak/
|
|
99
|
+
|
|
100
|
+
# Spyder project settings
|
|
101
|
+
.spyderproject
|
|
102
|
+
.spyproject
|
|
103
|
+
|
|
104
|
+
# Rope project settings
|
|
105
|
+
.ropeproject
|
|
106
|
+
|
|
107
|
+
# mkdocs documentation
|
|
108
|
+
/site
|
|
109
|
+
|
|
110
|
+
# mypy
|
|
111
|
+
.mypy_cache/
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
---
|
|
2
|
+
exclude: tests/etc/user-*
|
|
3
|
+
|
|
4
|
+
repos:
|
|
5
|
+
- repo: https://github.com/PyCQA/bandit
|
|
6
|
+
rev: 1.7.7
|
|
7
|
+
hooks:
|
|
8
|
+
- id: bandit
|
|
9
|
+
args:
|
|
10
|
+
- "-x *test*.py"
|
|
11
|
+
|
|
12
|
+
- repo: https://github.com/psf/black
|
|
13
|
+
rev: 24.2.0
|
|
14
|
+
hooks:
|
|
15
|
+
- id: black
|
|
16
|
+
language_version: python3.11
|
|
17
|
+
|
|
18
|
+
- repo: https://github.com/pycqa/flake8
|
|
19
|
+
rev: 7.0.0
|
|
20
|
+
hooks:
|
|
21
|
+
- id: flake8
|
|
22
|
+
args:
|
|
23
|
+
- "--config=setup.cfg"
|
|
24
|
+
|
|
25
|
+
- repo: https://github.com/PyCQA/isort
|
|
26
|
+
rev: 5.13.2
|
|
27
|
+
hooks:
|
|
28
|
+
- id: isort
|
|
29
|
+
|
|
30
|
+
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
31
|
+
rev: v4.5.0
|
|
32
|
+
hooks:
|
|
33
|
+
- id: requirements-txt-fixer
|
|
34
|
+
files: requirements/.*\.txt$
|
|
35
|
+
- id: trailing-whitespace
|
|
36
|
+
- id: check-added-large-files
|
|
37
|
+
- id: fix-byte-order-marker
|
|
38
|
+
- id: check-docstring-first
|
|
39
|
+
- id: check-executables-have-shebangs
|
|
40
|
+
- id: check-merge-conflict
|
|
41
|
+
- id: debug-statements
|
|
42
|
+
- id: detect-private-key
|
|
43
|
+
|
|
44
|
+
- repo: https://github.com/adrienverge/yamllint
|
|
45
|
+
rev: v1.34.0
|
|
46
|
+
hooks:
|
|
47
|
+
- id: yamllint
|
|
48
|
+
args:
|
|
49
|
+
- "--strict"
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# allow "on" until yamllint stops checking keys for truthy!
|
|
2
|
+
# https://github.com/adrienverge/yamllint/issues/158
|
|
3
|
+
---
|
|
4
|
+
extends: default
|
|
5
|
+
|
|
6
|
+
rules:
|
|
7
|
+
comments-indentation: disable
|
|
8
|
+
braces: disable
|
|
9
|
+
line-length:
|
|
10
|
+
max: 120
|
|
11
|
+
truthy:
|
|
12
|
+
level: error
|
|
13
|
+
allowed-values: ['true', 'false', 'on']
|
|
File without changes
|
|
File without changes
|