WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Reduce coverage requirement for now #519

Reduce coverage requirement for now

Reduce coverage requirement for now #519

Workflow file for this run

name: Tests
on:
push:
branches:
- 'main'
pull_request:
types: [ opened, reopened, synchronize, labeled ]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Ensure latest pip
run: python -m pip install --upgrade pip
- name: Install uv
run: pip install uv
- name: Install dependencies
run: uv sync --all-extras --all-groups
- name: Run tests
run: uv run pytest -ra -q --dist=loadscope --cov=hgraph --cov-report=xml