CI: install without dev dependencies first
Some checks failed
CI / test (push) Failing after 13s
CI / build (push) Has been skipped

This commit is contained in:
2026-03-22 21:36:10 +00:00
parent 27664cf609
commit a16d436336

View File

@@ -18,7 +18,9 @@ jobs:
python-version: '3.10'
- name: Install dependencies
run: pip install -e ".[dev]"
run: |
pip install -e .
pip install pytest
- name: Run tests
run: pytest tests/unit/test_generators.py -v