chore: bump project version to 1.39.0 and switch CI test runner to venv-based python and pytest

This commit is contained in:
2025-11-08 02:29:21 +00:00
parent e73b4444ff
commit 3e3f36f220
3 changed files with 12 additions and 4 deletions
+3 -3
View File
@@ -18,12 +18,12 @@ jobs:
. venv/bin/activate
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
venv/bin/python3 -m pip install --upgrade pip
venv/bin/python3 -m pip install -e ".[dev]"
- name: Run tests with pytest
run: |
pytest --cov=pr --cov-report=xml --cov-report=term-missing
venv/bin/pytest --cov=pr --cov-report=xml --cov-report=term-missing
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4