add agents

This commit is contained in:
Ashwin Bharambe 2025-03-21 06:30:34 -07:00 committed by Sébastien Han
parent 7ce1a4a80a
commit e483004d82
No known key found for this signature in database

View file

@ -25,7 +25,7 @@ jobs:
matrix:
# Listing tests manually since some of them currently fail
# TODO: generate matrix list from tests/integration when fixed
test-type: [inference, datasets, inspect, scoring, post_training, providers]
test-type: [agents, inference, datasets, inspect, scoring, post_training, providers]
fail-fast: false # we want to run all tests regardless of failure
steps:
@ -100,8 +100,14 @@ jobs:
env:
INFERENCE_MODEL: "meta-llama/Llama-3.2-3B-Instruct"
run: |
uv run pytest -v tests/integration/${{ matrix.test-type }} --stack-config=ollama --text-model="meta-llama/Llama-3.2-3B-Instruct" --embedding-model=all-MiniLM-L6-v2
uv run pytest -v tests/integration/${{ matrix.test-type }} --stack-config=ollama \
-k "not(builtin_tool_code or safety_with_image or code_interpreter_for)" \
--text-model="meta-llama/Llama-3.2-3B-Instruct" \
--embedding-model=all-MiniLM-L6-v2
- name: Run Integration Tests via http client
run: |
uv run pytest -v tests/integration/${{ matrix.test-type }} --stack-config=http://localhost:8321 --text-model="meta-llama/Llama-3.2-3B-Instruct" --embedding-model=all-MiniLM-L6-v2
uv run pytest -v tests/integration/${{ matrix.test-type }} --stack-config=http://localhost:8321 \
-k "not(builtin_tool_code or safety_with_image or code_interpreter_for)" \
--text-model="meta-llama/Llama-3.2-3B-Instruct" \
--embedding-model=all-MiniLM-L6-v2