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: with:
python-version: '3.11' python-version: '3.11'
- name: Install dependencies - name: Install dependencies
run: pip install pytest pyyaml click rich jinja2 jsonschema prompt_toolkit tomli
- name: Debug directory
run: | run: |
pwd pip install --upgrade pip
ls -la pip install pytest pyyaml click rich jinja2 jsonschema prompt_toolkit tomli
ls -la tests/ 2>/dev/null || echo "No tests directory"
- name: Run tests - name: Run tests
run: | run: |
if [ -d "tests" ]; then if [ -d "tests" ]; then
pytest tests/ -v --tb=short || exit 1 pytest tests/ -v --tb=short
else else
echo "No tests found" echo "No tests directory found"
exit 0 exit 1
fi fi