maintenance: update project version to 1.39.0
Tests / test (push) Failing after 25s

maintenance: use venv for test execution
docs: update changelog with release notes
This commit is contained in:
2025-11-08 03:29:21 +01:00
parent 4855b38306
commit 3d7bb39504
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