-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPipfile
More file actions
28 lines (24 loc) · 739 Bytes
/
Pipfile
File metadata and controls
28 lines (24 loc) · 739 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
[[source]]
url = "https://pypi.python.org/simple"
verify_ssl = true
name = "pypi"
[requires]
python_version = "3.10.14"
[packages]
boto3 = "*"
jsonref = "*"
simplejson = "*"
pyyaml = "*"
[dev-packages]
lxml = "*"
mypy = "*"
pylint = "*"
pytest = "*"
pytest-cov = "*"
pytest-html = "*"
[scripts]
lint = "pylint --fail-under 10 daplug_core"
test = "pytest tests"
coverage = "coverage run --source daplug_core -m pytest tests --cov=daplug_core --junitxml ./coverage/reports/junit.xml --cov-report xml:./coverage/reports/cov.xml --html=./coverage/reports/index.html --self-contained-html --cov-report html:./coverage/pretty -p no:warnings -o log_cli=true"
type-check = "mypy daplug_core"
setup-sync = "python tools/sync_setup_requires.py"