Skip to content

Commit 59fd770

Browse files
SentienceDEVclaude
andcommitted
Add debug verification step to CI workflow
- Add --no-cache-dir to pip install to avoid cache issues - Add verification step to print agent_runtime.py lines 340-350 - Verify assert_ method exists and assertTrue doesn't exist - This helps debug why CI sees assertTrue when code shows assert_ 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 9813122 commit 59fd770

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/test.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,18 @@ 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
3636
37+
- name: Verify source code
38+
run: |
39+
echo "=== Checking agent_runtime.py line 345 ==="
40+
sed -n '340,350p' sentience/agent_runtime.py
41+
echo "=== Verifying assert_ method exists ==="
42+
grep -n "def assert_" sentience/agent_runtime.py
43+
echo "=== Checking for assertTrue (should NOT exist) ==="
44+
grep -n "assertTrue" sentience/agent_runtime.py || echo "Good: no assertTrue found"
45+
3746
- name: Lint with pre-commit
3847
continue-on-error: true
3948
run: |

0 commit comments

Comments
 (0)