-
Notifications
You must be signed in to change notification settings - Fork 3
/
tox.ini
43 lines (38 loc) · 909 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
36
37
38
39
40
41
42
43
[tox]
envlist = py{3.8,3.9,3.10,3.11,3.12,3.13},py{3.8,3.9,3.10,3.11,3.12,3.13}-extra-deps
[testenv]
deps =
-r test_requirements.txt
commands =
pytest \
--flakes \
--doctest-modules \
--doctest-ignore-import-errors \
--block-network \
tests \
{posargs}
[testenv:py3.12]
commands =
pytest \
--flakes \
--doctest-modules \
--doctest-ignore-import-errors \
--block-network \
--pylint \
tests \
{posargs}
[testenv:py{3.8,3.9,3.10,3.11,3.12,3.13}-extra-deps]
deps =
-r test_requirements.txt
numpy
langchain-core>=0.3; python_version >= '3.9'
commands =
pytest \
--env numpy langchain_core \
--mypy \
--flakes \
--doctest-modules \
--doctest-ignore-import-errors \
--block-network \
tests src examples \
{posargs}