Skip to content
This repository was archived by the owner on Jun 5, 2025. It is now read-only.

Add codegate package path to poetry #1012

Merged
merged 2 commits into from
Feb 11, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ version = "0.1.7"
description = "Generative AI CodeGen security gateway"
readme = "README.md"
authors = []

packages = [
{ include = "codegate", from = "src" },
]
[tool.poetry.dependencies]
python = ">=3.12,<4.0"
click = "==8.1.8"
Expand Down
2 changes: 2 additions & 0 deletions tests/integration/integration_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,8 @@ async def run_test(self, test: dict, test_headers: dict) -> bool:
streaming = data.get("stream", False)
provider = test["provider"]

logger.info(f"Starting test: {test_name}")

response = self.call_codegate(url, test_headers, data, provider)
if not response:
logger.error(f"Test {test_name} failed: No response received")
Expand Down