We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0b9d1b commit 6a39914Copy full SHA for 6a39914
.github/workflows/test-unit-scheduled.yml
@@ -29,8 +29,9 @@ jobs:
29
- name: Install dependencies
30
run: |
31
python -m pip install --upgrade pip
32
- python -m pip install ./llama-stack-repo/src/llama_stack_api
33
- python -m pip install ./llama-stack-repo/src/llama_stack
+ 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 ../../..
34
+ 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__}')"
35
python -m pip install -e . --no-deps
36
python -m pip install pytest>=7.0.0 pytest-asyncio>=0.21.0 pytest-httpx>=0.21.0 pytest-mock>=3.10.0
37
0 commit comments