2025-12-26 11:21:42 -08:00
|
|
|
[project]
|
2024-10-28 20:05:06 -04:00
|
|
|
name = "e2e_tests"
|
|
|
|
|
version = "0.0.1"
|
|
|
|
|
description = "e2e tests for prompt and llm gateway"
|
2025-12-26 11:21:42 -08:00
|
|
|
authors = [{name = "Katanemo Labs, Inc", email = "info@katanemo.com"}]
|
|
|
|
|
license = {text = "Apache 2.0"}
|
2024-10-28 20:05:06 -04:00
|
|
|
readme = "README.md"
|
2025-12-26 11:21:42 -08:00
|
|
|
requires-python = ">=3.10"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"pytest>=8.3.3",
|
2026-04-02 18:00:28 -07:00
|
|
|
"requests>=2.33.0",
|
2025-12-26 11:21:42 -08:00
|
|
|
"selenium>=4.11.2",
|
|
|
|
|
"pytest-sugar>=1.0.0",
|
|
|
|
|
"deepdiff>=8.0.1",
|
|
|
|
|
"pytest-retry>=1.6.3",
|
2026-02-09 13:20:06 -08:00
|
|
|
"pytest-xdist>=3.5.0",
|
2025-12-26 11:21:42 -08:00
|
|
|
"anthropic>=0.66.0",
|
|
|
|
|
"openai>=1.0.0",
|
|
|
|
|
]
|
2024-10-28 20:05:06 -04:00
|
|
|
|
2025-12-26 11:21:42 -08:00
|
|
|
[project.optional-dependencies]
|
|
|
|
|
dev = [
|
|
|
|
|
"pytest-cov>=4.1.0",
|
|
|
|
|
]
|
2024-10-28 20:05:06 -04:00
|
|
|
|
2025-12-26 11:21:42 -08:00
|
|
|
[build-system]
|
|
|
|
|
requires = ["hatchling"]
|
|
|
|
|
build-backend = "hatchling.build"
|
|
|
|
|
|
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
|
|
|
packages = ["."]
|
2024-10-28 20:05:06 -04:00
|
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
|
python_files = ["test*.py"]
|
|
|
|
|
addopts = ["-v", "-s"]
|
2024-10-30 17:54:51 -07:00
|
|
|
retries = 2
|
|
|
|
|
retry_delay = 0.5
|
|
|
|
|
cumulative_timing = false
|