-
Notifications
You must be signed in to change notification settings - Fork 4
/
tox.ini
114 lines (104 loc) · 3 KB
/
tox.ini
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
[tox]
envlist = postgres,coverage-report,lint,typing
isolated_build = True
[docker:test-mysql]
image = mysql:5.7
ports =
3307:3307/tcp
environment =
MYSQL_DATABASE=keepertest
MYSQL_USER=user
MYSQL_PASSWORD=password
MYSQL_ROOT_PASSWORD=password
MYSQL_TCP_PORT=3307
allowlist_externals =
mysql
healthcheck_cmd = mysql --host=127.0.0.1 --port=$MYSQL_TCP_PORT \
--user=$MYSQL_USER --password=$MYSQL_PASSWORD --silent \
--execute="SELECT 1"
healthcheck_timeout = 1
healthcheck_retries = 60
healthcheck_interval = 1
healthcheck_start_period = 1
[docker:test-postgres]
image = postgres:11
ports =
3309:3309/tcp
# Environment variables are passed to the container. They are only
# available to that container, and not to the testenv, other
# containers, or as replacements in other parts of tox.ini
environment =
POSTGRES_PASSWORD=password
POSTGRES_USER=user
POSTGRES_DB=keepertest
PGPORT=3309
# The healthcheck ensures that tox-docker won't run tests until the
# container is up and the command finishes with exit code 0 (success)
healthcheck_cmd = PGPASSWORD=$POSTGRES_PASSWORD psql \
--user=$POSTGRES_USER --dbname=$POSTGRES_DB \
--host=127.0.0.1 --quiet --no-align --tuples-only \
-1 --command="SELECT 1"
healthcheck_timeout = 1
healthcheck_retries = 30
healthcheck_interval = 1
healthcheck_start_period = 1
[testenv]
description = Run pytest against {envname}.
setenv =
LTD_KEEPER_PROFILE=testing
LTD_KEEPER_ENABLE_TASKS=0
LTD_KEEPER_FERNET_KEY=s7pz62V_kITfe7OJbxXExcC_sksPrblCUYIR12_a6eY=
passenv =
LTD_KEEPER_TEST_AWS_ID
LTD_KEEPER_TEST_AWS_SECRET
LTD_KEEPER_TEST_AWS_REGION
LTD_KEEPER_TEST_BUCKET
deps =
-r{toxinidir}/requirements/main.txt
-r{toxinidir}/requirements/dev.txt
commands =
coverage run -m pytest {posargs}
[testenv:sqlite]
description = Run pytest with sqlite DB
[testenv:postgres]
description = Run pytest with Postgres DB.
docker =
test-postgres
setenv =
LTD_KEEPER_PROFILE=testing
LTD_KEEPER_ENABLE_TASKS=0
LTD_KEEPER_TEST_DB_URL=postgresql+psycopg2://user:password@localhost:3309/keepertest
LTD_KEEPER_FERNET_KEY=s7pz62V_kITfe7OJbxXExcC_sksPrblCUYIR12_a6eY=
[testenv:mysql]
description = Run pytest with MySQL DB.
docker =
test-mysql
setenv =
LTD_KEEPER_PROFILE=testing
LTD_KEEPER_ENABLE_TASKS=0
LTD_KEEPER_TEST_DB_URL=mysql+pymysql://user:password@localhost:3307/keepertest
LTD_KEEPER_FERNET_KEY=s7pz62V_kITfe7OJbxXExcC_sksPrblCUYIR12_a6eY=
[testenv:coverage-report]
description = Compile coverage from each test run.
skip_install = true
deps = coverage[toml]>=5.0.2
depends =
py38
commands =
coverage combine
coverage report
[testenv:lint]
description = Lint codebase by running pre-commit (Black, isort, Flake8).
skip_install = true
deps =
pre-commit
commands = pre-commit run --all-files
[testenv:typing]
description = Run mypy.
commands =
mypy keeper tests setup.py
[testenv:docs]
description = Compile Sphinx docs.
allowlist_externals =
make
commands = make -C docs html