-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (38 loc) · 1.1 KB
/
Copy pathpyproject.toml
File metadata and controls
40 lines (38 loc) · 1.1 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
[project]
name = "qdrant-test-deps"
version = "0.0.1"
requires-python = ">=3.10,<4"
dependencies = [
"grpc-interceptor>=0.15,<0.16",
"grpc-requests>=0.1,<0.2",
"more-itertools>=10.8,<11",
"pyjwt>=2.13.0,<3",
"jsons>=1.6.3,<2",
"pytest>=8.4,<9",
"pytest-timeout>=2.4,<3",
"pytest-cases>=3.9.1,<4",
"requests>=2.32.5,<3",
"schemathesis>=3.39.16,<4",
"retry>=0.9.2,<0.10",
"docker>=7.1.0,<8",
"pytest-xdist>=3.8.0,<4",
"pytest-subtests>=0.14.1,<0.15",
"qdrant-client>=1.19.0,<2",
"tqdm>=4.67.1,<5",
]
[tool.uv]
package = false
[tool.pytest.ini_options]
markers = [
"longrunning: marks tests as long-running (deselect with '-m \"not longrunning\"')",
"xdist_group: group tests to run on the same worker (for pytest-xdist)",
]
# Surface hangs at 32 min with a traceback instead of the 60 min job kill.
timeout = 1920
addopts = """
--dist=loadgroup
"""
filterwarnings = [
"ignore:jsonschema.RefResolver is deprecated:DeprecationWarning:schemathesis",
"ignore:jsonschema.exceptions.RefResolutionError is deprecated:DeprecationWarning:schemathesis",
]