build(agent): new-agents-4#58ba63 iteration
This commit is contained in:
parent
73e3c70b42
commit
0ae09d1e15
|
|
@ -11,6 +11,13 @@ requires-python = ">=3.8"
|
||||||
license = {text = "MIT"}
|
license = {text = "MIT"}
|
||||||
authors = [{name = "OpenCode", email = "devnull@example.com"}]
|
authors = [{name = "OpenCode", email = "devnull@example.com"}]
|
||||||
|
|
||||||
|
# Runtime dependencies for tests and MVP API
|
||||||
|
dependencies = [
|
||||||
|
"fastapi>=0.95.0",
|
||||||
|
"httpx>=0.23.0",
|
||||||
|
"pydantic>=1.10.0",
|
||||||
|
]
|
||||||
|
|
||||||
[tool.setuptools.packages.find]
|
[tool.setuptools.packages.find]
|
||||||
where = ["src"]
|
where = ["src"]
|
||||||
include = ["edge_latency_aware_cross_venue_execution*"]
|
include = ["edge_latency_aware_cross_venue_execution*"]
|
||||||
|
|
|
||||||
3
test.sh
3
test.sh
|
|
@ -2,6 +2,9 @@
|
||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
export PYTHONPATH="${PYTHONPATH:+$PYTHONPATH:}$PWD/src"
|
export PYTHONPATH="${PYTHONPATH:+$PYTHONPATH:}$PWD/src"
|
||||||
|
|
||||||
|
echo "Installing test dependencies (fastapi, httpx, pydantic, etc.)"
|
||||||
|
pip install --upgrade --quiet fastapi httpx pydantic
|
||||||
|
|
||||||
echo "Running tests (pytest)"
|
echo "Running tests (pytest)"
|
||||||
pytest -q
|
pytest -q
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue