Spaces:
Build error
Build error
Commit ·
1f806ce
1
Parent(s): f1e7b62
Add Agno integration tests to CI workflow
Browse files- .github/workflows/ci.yml +19 -0
.github/workflows/ci.yml
CHANGED
|
@@ -82,6 +82,25 @@ jobs:
|
|
| 82 |
run: |
|
| 83 |
pytest tests/test_relevance.py -v
|
| 84 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 85 |
build:
|
| 86 |
runs-on: ubuntu-latest
|
| 87 |
steps:
|
|
|
|
| 82 |
run: |
|
| 83 |
pytest tests/test_relevance.py -v
|
| 84 |
|
| 85 |
+
test-agno:
|
| 86 |
+
runs-on: ubuntu-latest
|
| 87 |
+
steps:
|
| 88 |
+
- uses: actions/checkout@v4
|
| 89 |
+
|
| 90 |
+
- name: Set up Python
|
| 91 |
+
uses: actions/setup-python@v5
|
| 92 |
+
with:
|
| 93 |
+
python-version: "3.11"
|
| 94 |
+
|
| 95 |
+
- name: Install with agno extras
|
| 96 |
+
run: |
|
| 97 |
+
python -m pip install --upgrade pip
|
| 98 |
+
pip install -e ".[dev,agno]"
|
| 99 |
+
|
| 100 |
+
- name: Run agno tests
|
| 101 |
+
run: |
|
| 102 |
+
pytest tests/test_integrations/agno/ -v
|
| 103 |
+
|
| 104 |
build:
|
| 105 |
runs-on: ubuntu-latest
|
| 106 |
steps:
|