-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPipfile
More file actions
44 lines (40 loc) · 1.13 KB
/
Pipfile
File metadata and controls
44 lines (40 loc) · 1.13 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
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[requires]
python_version = "3.8"
[packages]
common = {editable = true, path = "src/common"}
aws-xray-sdk = "*"
pillow = "*"
rawpy = "*"
aws-lambda-powertools = "*"
boto3 = "*"
exifread = {editable = true, ref = "feature/exifheader-changes", git = "https://github.com/ServerlessOpsIO/exif-py"}
dataclasses-json = "*"
filetype = "*"
imageio = "*"
[dev-packages]
flake8 = "*"
moto = {extras = ["dynamodb2", "s3"], version = "*"}
mypy = "*"
boto3-stubs = { extras = ["dynamodb", "cloudformation", "lambda", "s3", "sns", "ssm", "sts", "xray" ], version = "*"}
pylint = "*"
pytest = "*"
pytest-cov = "*"
pytest-mock = "*"
pytest-pylint = "*"
tox = "*"
cfn-lint = "*"
genson = "*"
jsonschema = "*"
json2python-models = "*"
dataclasses-jsonschema = "*"
[scripts]
#install-lambda-functions = "pipenv install -r src/requirements.txt"
test = "pytest -vv --cov src --cov-report term-missing --cov-fail-under 95 tests"
unit-test = "pytest -vv --cov src --cov-report term-missing --cov-fail-under 95 tests/unit"
integ-test = "pytest -vv tests/integration"
flake8 = "flake8"
lint = "pylint"