Skip to content

electrical delay in settings for vna #7735

electrical delay in settings for vna

electrical delay in settings for vna #7735

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
types:
- "opened"
- "reopened"
- "synchronize"
- "ready_for_review"
jobs:
tests:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
timeout-minutes: 10
env:
HOME_REPO: /home/repo
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
enable-cache: true
cache-dependency-glob: |
**/pyproject.toml
**/uv.lock
python-version: "3.10"
- name: Install the project
run: uv sync --group dev --all-extras
- name: Run tests
run: |
uv run pytest -n auto --dist loadfile --cov=qililab --cov-report=xml tests
- name: Upload Coverage
uses: codecov/codecov-action@v5
with:
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}
flags: "unittests"