We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f00a00 commit 38d4913Copy full SHA for 38d4913
.github/workflows/test.yml
@@ -34,6 +34,24 @@ jobs:
34
pip install --no-cache-dir -e ".[dev]"
35
pip install pre-commit mypy types-requests
36
37
+ - name: Verify installed package
38
+ shell: bash
39
+ run: |
40
+ echo "=== Installed sentience location ==="
41
+ python -c "import sentience; print(sentience.__file__)"
42
+ echo "=== Check assert_done in installed package ==="
43
+ python -c "
44
+import inspect
45
+from sentience.agent_runtime import AgentRuntime
46
+source = inspect.getsource(AgentRuntime.assert_done)
47
+print(source)
48
+if 'assertTrue' in source:
49
+ print('ERROR: assertTrue found in installed package!')
50
+ exit(1)
51
+else:
52
+ print('Good: assert_ is correctly used')
53
+"
54
+
55
- name: Verify source code
56
shell: bash
57
run: |
0 commit comments