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: steps:
- name: Install - name: Install
run: | run: |
python3 -m ensurepip --upgrade 2>/dev/null || true which pip3 || (apt-get update && apt-get install -y python3-pip)
python3 -m pip install --upgrade pip pip3 install --upgrade pip setuptools wheel
python3 -m pip install -e . pip3 install -e .
python3 -m pip install pytest pip3 install pytest
- name: Test - name: Test
run: python3 -m pytest tests/ -v run: pytest tests/ -v