-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathtox.ini
More file actions
39 lines (32 loc) · 736 Bytes
/
tox.ini
File metadata and controls
39 lines (32 loc) · 736 Bytes
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
[tox]
envlist = py3{9,10,11,12,13,14}, ruff, manifest, docs, spell
[testenv:py37]
skip_install = true
deps = dist/dbutils-3.1.2-py3-none-any.whl[tests]
commands = pytest {posargs}
[testenv:py38]
skip_install = true
deps = dist/dbutils-3.1.2-py3-none-any.whl[tests]
commands = pytest {posargs}
[testenv]
setenv =
PYTHONPATH = {toxinidir}
extras = tests
commands = pytest {posargs}
[testenv:spell]
basepython = python3.14
deps = codespell
commands = codespell .
[testenv:ruff]
basepython = python3.14
deps = ruff
commands = ruff check .
[testenv:manifest]
basepython = python3.14
deps = check-manifest
commands = check-manifest -v
[testenv:docs]
basepython = python3.14
extras = docs
changedir = docs
commands = python make.py