We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff859a0 commit e2babe7Copy full SHA for e2babe7
.github/workflows/test.yml
@@ -31,8 +31,10 @@ jobs:
31
32
- name: Install dependencies
33
run: |
34
- pip install -e ".[dev]"
+ pip install --no-cache-dir -e ".[dev]"
35
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}')"
38
39
- name: Lint with pre-commit
40
continue-on-error: true
0 commit comments