fix: CI smoke test — add tests/__init__.py, fix discovery pattern to test_*.py
Browse files- scripts/ci/smoke.sh +1 -1
- tests/__init__.py +0 -0
scripts/ci/smoke.sh
CHANGED
|
@@ -5,4 +5,4 @@ REPO_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd)"
|
|
| 5 |
cd "$REPO_ROOT"
|
| 6 |
|
| 7 |
python3 -m compileall -q src/agentic
|
| 8 |
-
python3 -m unittest discover -s tests -p '
|
|
|
|
| 5 |
cd "$REPO_ROOT"
|
| 6 |
|
| 7 |
python3 -m compileall -q src/agentic
|
| 8 |
+
python3 -m unittest discover -s tests -p 'test_*.py'
|
tests/__init__.py
ADDED
|
File without changes
|