Skip to content

Commit e2babe7

Browse files
author
SentienceDEV
committed
fix: add --no-cache-dir to pip install and verify local install
1 parent ff859a0 commit e2babe7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,10 @@ jobs:
3131
3232
- name: Install dependencies
3333
run: |
34-
pip install -e ".[dev]"
34+
pip install --no-cache-dir -e ".[dev]"
3535
pip install pre-commit mypy types-requests
36+
# Verify local install is used
37+
python -c "import sentience.agent_runtime; import inspect; src = inspect.getsourcefile(sentience.agent_runtime); print(f'Using: {src}')"
3638
3739
- name: Lint with pre-commit
3840
continue-on-error: true

0 commit comments

Comments
 (0)