Tier 1 - daily scheduled unit tests against llama-stack main #63
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Tier 1 - daily scheduled unit tests against llama-stack main | |
| on: | |
| schedule: | |
| - cron: '0 8 * * *' | |
| workflow_dispatch: | |
| jobs: | |
| integration-test: | |
| name: "Tier 1 - daily scheduled unit tests against llama-stack main" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Checkout llama-stack | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: llamastack/llama-stack | |
| ref: main | |
| path: llama-stack-repo | |
| - name: Set up Python 3.12 | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: "3.12" | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| cd llama-stack-repo/src/llama_stack_api && python -m pip install -e . && cd ../../.. | |
| cd llama-stack-repo/src/llama_stack && python -m pip install -e . && cd ../../.. | |
| python -c "import sys; import llama_stack_api; print(f'llama_stack_api: {llama_stack_api.__file__}'); import llama_stack; print(f'llama_stack: {llama_stack.__file__}')" | |
| python -m pip install -e . --no-deps | |
| python -m pip install pytest>=7.0.0 pytest-asyncio>=0.21.0 pytest-httpx>=0.21.0 pytest-mock>=3.10.0 | |
| - name: Run unit tests | |
| run: | | |
| python -m pytest tests/unit/ -v | |
| - name: Upload logs on failure | |
| if: failure() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: test-logs | |
| path: | | |
| *.log | |
| tests/**/*.log |