-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
141 lines (129 loc) · 4.46 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
[tox]
envlist = docker,coverage-report,typing,lint
isolated_build = True
[docker:postgres]
image = postgres:latest
environment =
POSTGRES_PASSWORD=INSECURE-PASSWORD
POSTGRES_USER=timessquare
POSTGRES_DB=timessquare
# 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
healthcheck_cmd =
redis-cli ping
healthcheck_timeout = 1
healthcheck_retries = 30
healthcheck_interval = 1
healthcheck_start_period = 1
[testenv]
description = Environment with test dependencies.
deps =
-r{toxinidir}/requirements/main.txt
-r{toxinidir}/requirements/dev.txt
[testenv:docker]
description = Run pytest with PostgreSQL via Docker.
docker =
postgres
redis
setenv =
# Set up test values configurations that must be obtained through
# environment variables; pytest can override these for individual test runs
SAFIR_LOG_LEVEL = DEBUG
SAFIR_PROFILE = development
TS_ENVIRONMENT_URL = https://test.example.com
TS_DATABASE_URL = postgresql://timessquare@localhost:5433/timessquare
TS_DATABASE_PASSWORD = INSECURE-PASSWORD
TS_REDIS_URL = redis://localhost:6379/0
TS_REDIS_QUEUE_URL = redis://localhost:6379/1
TS_GAFAELFAWR_TOKEN = gt-eOfLolxU8FJ1xr08U7RTbg.Jr-KHSeISXwR5GXHiLemhw
TS_ARQ_MODE = test
TS_ENABLE_GITHUB_APP = false
TS_GITHUB_APP_PRIVATE_KEY = foo
TS_GITHUB_WEBHOOK_SECRET = foo
deps =
-r{toxinidir}/requirements/main.txt
-r{toxinidir}/requirements/dev.txt
commands =
pytest -vv --cov=timessquare --cov-branch --cov-report= {posargs}
[testenv:coverage-report]
description = Compile coverage from each test run.
skip_install = true
deps = coverage[toml]>=5.0.2
depends =
docker
commands = coverage report
[testenv:typing]
description = Run mypy.
commands =
mypy src/timessquare tests
[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
setenv =
SAFIR_PROFILE = development
TS_ENVIRONMENT_URL = https://test.example.com
TS_PATH_PREFIX = /times-square/api
TS_DATABASE_URL = postgresql://timessquare@127.0.0.1:5432/timessquare
TS_DATABASE_PASSWORD = INSECURE-PASSWORD
TS_REDIS_URL = redis://localhost:6379/0
TS_REDIS_QUEUE_URL = redis://localhost:6379/1
TS_GAFAELFAWR_TOKEN = gt-eOfLolxU8FJ1xr08U7RTbg.Jr-KHSeISXwR5GXHiLemhw
TS_GITHUB_APP_PRIVATE_KEY = foo
TS_GITHUB_WEBHOOK_SECRET = foo
TS_ENABLE_GITHUB_APP = false
commands =
times-square init
times-square develop
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/
[testenv:docs]
description = Build documentation (HTML) with Sphinx.
setenv =
TS_ENVIRONMENT_URL = https://test.example.com
TS_DATABASE_URL = postgresql://timessquare@localhost:5433/timessquare
TS_DATABASE_PASSWORD = INSECURE-PASSWORD
TS_GAFAELFAWR_TOKEN = gt-eOfLolxU8FJ1xr08U7RTbg.Jr-KHSeISXwR5GXHiLemhw
TS_REDIS_URL = redis://localhost:6379/0
TS_REDIS_QUEUE_URL = redis://localhost:6379/0
TS_ARQ_MODE = test
TS_GITHUB_APP_PRIVATE_KEY = foo
TS_GITHUB_WEBHOOK_SECRET = foo
TS_ENABLE_GITHUB_APP = false
commands =
sphinx-build -n -T -b html -d {envtmpdir}/doctrees docs docs/_build/html
[testenv:docs-linkcheck]
description = Check links in documentation.
setenv =
TS_ENVIRONMENT_URL = https://test.example.com
TS_DATABASE_URL = postgresql://timessquare@localhost:5433/timessquare
TS_DATABASE_PASSWORD = INSECURE-PASSWORD
TS_GAFAELFAWR_TOKEN = gt-eOfLolxU8FJ1xr08U7RTbg.Jr-KHSeISXwR5GXHiLemhw
TS_REDIS_URL = redis://localhost:6379/0
TS_REDIS_QUEUE_URL = redis://localhost:6379/0
TS_ARQ_MODE = test
TS_REDIS_QUEUE_URL = redis://localhost:6379/0
TS_GITHUB_APP_PRIVATE_KEY = foo
TS_GITHUB_WEBHOOK_SECRET = foo
TS_ENABLE_GITHUB_APP = false
commands =
sphinx-build -n -T -b linkcheck -d {envtmpdir}/doctrees docs docs/_build/linkcheck