forked from gooddata/gooddata-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
35 lines (32 loc) · 729 Bytes
/
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
# (C) 2021 GoodData Corporation
[tox]
envlist = py3{9,10,11,12,13}
[testenv]
package = wheel
wheel_build_env = .pkg
deps =
-r{toxinidir}/test-requirements.txt
-e../gooddata-api-client
-e../gooddata-sdk
-e../tests-support
setenv=
PYTHONDONTWRITEBYTECODE=1
commands =
pytest -v --cov=gooddata_fdw --cov-report=xml tests {posargs}
[testenv:mypy]
basepython = python3.13
skip_install = true
deps =
-r{toxinidir}/type-requirements.txt
-e../gooddata-api-client
-e../gooddata-sdk
-e../tests-support
commands =
mypy gooddata_fdw
[testenv:docs]
basepython = python3.13
skip_install = true
deps =
-r{toxinidir}/docs/requirements.txt
commands =
sphinx-build -b html docs docs/_build/html