forked from psqlpy-python/psqlpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
46 lines (43 loc) · 686 Bytes
/
tox.ini
File metadata and controls
46 lines (43 loc) · 686 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
40
41
42
43
44
45
46
[tox]
isolated_build = true
env_list =
py313
py312
py311
py310
py39
py38
[gh]
python =
3.13 = py313
3.12 = py312
3.11 = py311
3.10 = py310
3.9 = py39
3.8 = py38
[testenv]
skip_install = true
deps =
pytest>=7,<8
anyio>=3,<4
maturin>=1,<2
pydantic>=2
pyarrow>=17
pgpq>=0.9
allowlist_externals = maturin
commands_pre =
maturin develop
commands =
pytest -vv
[testenv:py313]
skip_install = true
deps =
pytest>=7,<8
anyio>=3,<4
maturin>=1,<2
pydantic>=2
allowlist_externals = maturin
commands_pre =
maturin develop
commands =
pytest -vv --ignore="./python/tests/test_binary_copy.py"