-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPipfile
More file actions
40 lines (34 loc) · 1.01 KB
/
Pipfile
File metadata and controls
40 lines (34 loc) · 1.01 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
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[requires]
python_version = "3.13"
[packages]
common = {editable = true, path = "src/common"}
aws-lambda-powertools = "*"
[dev-packages]
boto3-stubs = { extras = ["apigateway", "dynamodb" ], version = "*"}
cfn-lint = "*"
flake8 = "*"
genson = "*"
jsonschema = "*"
json2python-models = "*"
moto = {extras = ["apigateway", "dynamodb"], version = "*"}
mypy = "*"
pylint = "*"
pytest = "*"
pytest-cov = "*"
pytest-flake8 = "*"
pytest-mock = "*"
pytest-mypy = "*"
pytest-pylint = "*"
tox = "*"
[scripts]
test = "pytest -vv --cov src --cov-report term-missing --cov-fail-under 95 tests"
test-unit = "pytest -vv --cov src --cov-report term-missing --cov-fail-under 95 tests/unit"
test-int = "pytest -vv --cov src --cov-report term-missing --cov-fail-under 95 tests/integration"
test-ete = "pytest -vv --cov src --cov-report term-missing --cov-fail-under 95 tests/ete"
flake8 = "pytest -vv --flake8"
pylint = "pytest -vv --pylint"
mypy = "pytest -vv --mypy"