-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPipfile
More file actions
37 lines (33 loc) · 1.04 KB
/
Pipfile
File metadata and controls
37 lines (33 loc) · 1.04 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
[[source]]
url = "https://pypi.python.org/simple"
verify_ssl = true
name = "pypi"
[requires]
python_version = "3.10.14"
[packages]
boto3 = "*"
jsonref = "*"
pyyaml = "*"
simplejson = "*"
neo4j = ">=4.4,<5"
daplug-core = "==1.0.0b5"
typing-extensions = "*"
[dev-packages]
mypy = "*"
lxml = "*"
pylint = "*"
pytest = "*"
pytest-cov = "*"
pytest-html = "*"
pylint-json2html = "*"
[scripts]
lint = "pylint --fail-under 10 daplug_cypher"
test = "pytest tests/unit"
test_ci = "pytest -m 'neo4j or neptune'"
test_neo4j = "pytest -m neo4j"
test_neptune = "pytest -m neptune"
integrations = "bash tests/integrations/run.sh"
coverage = "coverage run --source daplug_cypher -m pytest --junitxml ./coverage/reports/junit.xml --cov=daplug_cypher --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"
typecheck-report = "mypy --html-report ./coverage/typing daplug_cypher"
typecheck = "mypy daplug_cypher"
setup-sync = "python tools/sync_setup_requires.py"