Skip to content

Commit 6a39914

Browse files
committed
🚧 another try
1 parent d0b9d1b commit 6a39914

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/test-unit-scheduled.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,9 @@ jobs:
2929
- name: Install dependencies
3030
run: |
3131
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
32+
cd llama-stack-repo/src/llama_stack_api && python -m pip install -e . && cd ../../..
33+
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__}')"
3435
python -m pip install -e . --no-deps
3536
python -m pip install pytest>=7.0.0 pytest-asyncio>=0.21.0 pytest-httpx>=0.21.0 pytest-mock>=3.10.0
3637

0 commit comments

Comments
 (0)