Proper CI workflow
Some checks failed
CI / test (push) Failing after 6s

This commit is contained in:
2026-02-01 21:15:30 +00:00
parent 9726d9e443
commit 8363b61b8a

View File

@@ -11,17 +11,14 @@ 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: |
pwd
ls -la
ls -la tests/ 2>/dev/null || echo "No tests directory"
pip install --upgrade pip
pip install pytest pyyaml click rich jinja2 jsonschema prompt_toolkit tomli
- name: Run tests
run: |
if [ -d "tests" ]; then
pytest tests/ -v --tb=short || exit 1
pytest tests/ -v --tb=short
else
echo "No tests found"
exit 0
echo "No tests directory found"
exit 1
fi