2024-10-28 20:05:06 -04:00
|
|
|
[tool.poetry]
|
|
|
|
|
name = "e2e_tests"
|
|
|
|
|
version = "0.0.1"
|
|
|
|
|
description = "e2e tests for prompt and llm gateway"
|
2024-12-20 13:25:01 -08:00
|
|
|
authors = ["Katanemo Labs, Inc <info@katanemo.com>"]
|
2024-10-28 20:05:06 -04:00
|
|
|
license = "Apache 2.0"
|
|
|
|
|
readme = "README.md"
|
|
|
|
|
package-mode = false
|
|
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2024-12-20 13:25:01 -08:00
|
|
|
python = "^3.12"
|
2024-10-30 17:54:51 -07:00
|
|
|
pytest = "^8.3.3"
|
2024-10-28 20:05:06 -04:00
|
|
|
requests = "^2.29.0"
|
|
|
|
|
selenium = "^4.11.2"
|
|
|
|
|
pytest-sugar = "^1.0.0"
|
|
|
|
|
deepdiff = "^8.0.1"
|
2024-10-30 17:54:51 -07:00
|
|
|
pytest-retry = "^1.6.3"
|
2024-10-28 20:05:06 -04:00
|
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
|
|
|
pytest-cov = "^4.1.0"
|
|
|
|
|
|
|
|
|
|
[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
|