modified: ci.yml, pyproject: added missing installs and modified pip install command
Some checks failed
CI / Lint (ruff) (push) Successful in 16s
CI / Test (pytest) (3.11) (push) Failing after 20s
CI / Test (pytest) (3.12) (push) Failing after 20s
CI / SAST (bandit) (push) Failing after 11s
CI / Dependency audit (pip-audit) (push) Successful in 19s
CI / Open PR to main (push) Has been skipped

This commit is contained in:
2026-04-08 15:50:17 -04:00
parent 6f10e7556f
commit 65b220fdbe

View File

@@ -30,7 +30,7 @@ jobs:
- uses: actions/setup-python@v5 - uses: actions/setup-python@v5
with: with:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}
- run: pip install -e . - run: pip install -e .[optional-dependencies]
- run: pytest tests/ -v --tb=short - run: pytest tests/ -v --tb=short
bandit: bandit:
@@ -53,7 +53,7 @@ jobs:
with: with:
python-version: "3.11" python-version: "3.11"
- run: pip install pip-audit - run: pip install pip-audit
- run: pip install -e . - run: pip install -e .[optional-dependencies]
- run: pip-audit --skip-editable - run: pip-audit --skip-editable
open-pr: open-pr: