Debug and run tests
All checks were successful
CI / test (push) Successful in 6s

This commit is contained in:
2026-02-01 21:14:47 +00:00
parent 029bad808f
commit 9726d9e443

View File

@@ -11,9 +11,17 @@ jobs:
with:
python-version: '3.11'
- name: Install dependencies
run: pip install pytest pyyaml click rich jinja2 jsonschema prompt_toolkit tomli
- name: Debug directory
run: |
pip install pytest pyyaml click rich jinja2 jsonschema prompt_toolkit tomli
- name: Debug tests
run: ls tests/
pwd
ls -la
ls -la tests/ 2>/dev/null || echo "No tests directory"
- name: Run tests
run: pytest tests/ -v --tb=short || true
run: |
if [ -d "tests" ]; then
pytest tests/ -v --tb=short || exit 1
else
echo "No tests found"
exit 0
fi