feat: add benchmark script and automated workflow for delta test coverage evaluation

This commit is contained in:
aliowka 2026-06-16 20:40:18 +03:00
parent 852c692d20
commit 38cbf73cb5
1 changed files with 0 additions and 3 deletions

View File

@ -30,11 +30,8 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
# install runtime/test deps if a top-level requirements.txt exists
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
# try docs requirements but don't fail the job on pin/version errors (e.g. invalid sphinx pin)
if [ -f docs/requirements.txt ]; then pip install -r docs/requirements.txt || echo "docs/requirements install failed, continuing"; fi
# ensure test/runtime packages required by the test suite are present
pip install --no-cache-dir pytest twisted deltatest-cli
- name: Run Affected Tests