-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPipfile
More file actions
30 lines (26 loc) · 876 Bytes
/
Pipfile
File metadata and controls
30 lines (26 loc) · 876 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
29
30
[[source]]
url = "https://pypi.python.org/simple"
verify_ssl = true
name = "pypi"
[requires]
python_version = "3.10.14"
[packages]
boto3 = "*"
daplug-core = "*"
psycopg2-binary = "*"
mysql-connector-python = "*"
[dev-packages]
lxml = "*"
mypy = "*"
pylint = "*"
pytest = "*"
pytest-cov = "*"
pytest-html = "*"
[scripts]
lint = "pylint --fail-under 10 daplug_sql"
integration = "./tests/integration/run.sh"
test = "pytest tests/unit"
test_ci = "bash -c 'pytest tests/unit && pytest tests/integration'"
coverage = "coverage run --source daplug_sql -m pytest tests --cov=daplug_sql --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_sql"
setup-sync = "python tools/sync_setup_requires.py"