forked from brutasse/graphite-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
64 lines (54 loc) · 1.01 KB
/
tox.ini
File metadata and controls
64 lines (54 loc) · 1.01 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
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
[tox]
envlist =
py39,
py310,
py311,
py312,
py313,
py314,
py315
no-flask-caching,
cairo
[testenv]
setenv =
PYTHONPATH={toxinidir}
GRAPHITE_API_CONFIG={toxinidir}/tests/conf.yaml
commands =
python -Wall -m unittest \
tests.test_attime \
tests.test_carbonlink \
tests.test_config \
tests.test_encoders \
tests.test_finders \
tests.test_functions \
tests.test_http \
tests.test_intervals \
tests.test_metrics \
tests.test_paths \
tests.test_render \
tests.test_render_datalib \
tests.test_storage
deps =
.[sentry,cache]
[testenv:py39]
basepython = python3.9
[testenv:py310]
basepython = python3.10
[testenv:py311]
basepython = python3.11
[testenv:py312]
basepython = python3.12
[testenv:py313]
basepython = python3.13
[testenv:py314]
basepython = python3.14
[testenv:py315]
basepython = python3.15
[testenv:no-flask-caching]
basepython = python3.12
deps =
.[sentry]
[testenv:cairo]
basepython = python3.12
commands =
python -Wall -m unittest tests.test_render_cairo tests.test_render_glyph