-
Notifications
You must be signed in to change notification settings - Fork 2
/
Pipfile
34 lines (30 loc) · 979 Bytes
/
Pipfile
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
[[source]]
url = "https://pypi.python.org/simple"
verify_ssl = true
name = "pypi"
[requires]
python_version = "3.8.6"
[packages]
aws-psycopg2 = "*"
boto3 = "*"
elasticsearch = "==7.13.4"
jsonref = "*"
jsonpickle = "*"
pymongo = {extras = ["srv"], version = "*"}
psycopg2-binary = "*"
pyyaml = "*"
requests-aws4auth = "*"
simplejson = "*"
[dev-packages]
autopep8 = "*"
pylint = "*"
pylint-report = "*"
pylint-quotes = "*"
pytest = "*"
pytest-html = "*"
pytest-cov = "*"
[scripts]
test = "python -m unittest discover"
coverage = "coverage run --source syngenta_digital_dta/ -m pytest tests/syngenta_digital_dta --cov=syngenta_digital_dta --junitxml ./coverage/reports/xunit.xml --cov-report xml:./coverage/reports/coverage.xml --html=./coverage/unit-test/index.html --self-contained-html --cov-report html:./coverage -p no:warnings -o log_cli=true"
lint = "pylint --fail-under 10 syngenta_digital_dta"
local = "docker-compose -f tests/local/databases.yml up --remove-orphans"