forked from neo4j/neo4j-python-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
39 lines (38 loc) · 697 Bytes
/
tox.ini
File metadata and controls
39 lines (38 loc) · 697 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
31
32
33
34
35
36
37
38
39
[tox]
envlist =
py35
py36
py37
py38
py39
[testenv]
passenv =
NEO4J_SERVER_PACKAGE
NEO4J_RELEASES
NEO4J_USER
NEO4J_PASSWORD
TEAMCITY_VERSION
TEAMCITY_HOST
TEAMCITY_USER
TEAMCITY_PASSWORD
JAVA_HOME
NEO4J_URI
AWS_ACCESS_KEY_ID
AWS_SECRET_ACCESS_KEY
APPDATA
LOCALAPPDATA
ProgramData
windir
ProgramFiles
ProgramFiles(x86)
ProgramW6432
# APPDATA and below are needed for Neo4j >=4.3 service to run on Windows
deps =
-r tests/requirements.txt
commands =
coverage erase
coverage run -m pytest -v {posargs} \
tests/unit \
tests/stub \
tests/integration
coverage report