Use pip3 with apt-get fallback
Some checks failed
CI / test (push) Failing after 1s

This commit is contained in:
2026-02-01 05:28:30 +00:00
parent dfbc60744d
commit f2b16574bf

View File

@@ -8,9 +8,9 @@ jobs:
steps:
- name: Install
run: |
python3 -m ensurepip --upgrade 2>/dev/null || true
python3 -m pip install --upgrade pip
python3 -m pip install -e .
python3 -m pip install pytest
which pip3 || (apt-get update && apt-get install -y python3-pip)
pip3 install --upgrade pip setuptools wheel
pip3 install -e .
pip3 install pytest
- name: Test
run: python3 -m pytest tests/ -v
run: pytest tests/ -v