Files
confgen/.gitea/workflows/ci.yml
7000pctAUTO 1f2f8cb0ad
Some checks failed
CI / test (push) Failing after 1s
Use PYTHONPATH to run tests
2026-02-01 21:05:10 +00:00

19 lines
422 B
YAML

name: CI
on:
push:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- run: whoami
- run: python3 --version
- name: Install dependencies
run: pip install pytest pyyaml click rich jinja2 jsonschema prompt_toolkit tomli
- name: Set PYTHONPATH
run: export PYTHONPATH=/app/src:$PYTHONPATH
- name: Run tests
run: pytest /app/tests/ -v --tb=short