-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
91 lines (83 loc) · 2.33 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
[tox]
envlist = py,typing,lint,coverage-report
isolated_build = True
[docker:postgres]
image = postgres:latest
ports =
5432:5432/tcp
environment =
POSTGRES_PASSWORD=INSECURE-PASSWORD
POSTGRES_USER=vo-cutouts
POSTGRES_DB=vo-cutouts
PGPORT=5432
# 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
[docker:redis]
image = redis:latest
ports =
6379:6379/tcp
healthcheck_cmd =
redis-cli ping
healthcheck_timeout = 1
healthcheck_retries = 30
healthcheck_interval = 1
healthcheck_start_period = 1
[testenv]
description = Run pytest against {envname}.
deps =
-r{toxinidir}/requirements/main.txt
-r{toxinidir}/requirements/dev.txt
[testenv:coverage-report]
description = Compile coverage from each test run.
skip_install = true
deps = coverage[toml]>=5.0.2
depends =
py
commands = coverage report
[testenv:py]
description = Run pytest with PostgreSQL and Redis via Docker.
docker =
postgres
redis
commands =
pytest -vv --timeout=60 --cov=vocutouts --cov-branch --cov-report= {posargs}
setenv =
CUTOUT_DATABASE_URL = postgresql://vo-cutouts@127.0.0.1/vo-cutouts
CUTOUT_DATABASE_PASSWORD = INSECURE-PASSWORD
CUTOUT_REDIS_HOST = 127.0.0.1
[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:run]
description = Run the development server with auto-reload for code changes.
usedevelop = true
whitelist_externals =
docker-compose
commands_pre =
docker-compose up -d
holdup -t 60 -T 5 -i 1 -n tcp://localhost:6379/
holdup -t 60 -T 5 -i 1 -n tcp://localhost:5432/
commands =
ivoa-cutout-poc init
ivoa-cutout-poc run
commands_post =
docker-compose down
setenv =
CUTOUT_DATABASE_URL = postgresql://vo-cutouts@127.0.0.1/vo-cutouts
CUTOUT_DATABASE_PASSWORD = INSECURE-PASSWORD
CUTOUT_REDIS_HOST = 127.0.0.1
[testenv:typing]
description = Run mypy.
commands =
mypy src/vocutouts tests