Skip to content

update package reference in docs. #189

update package reference in docs.

update package reference in docs. #189

Workflow file for this run

name: build-codecov
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python "3.10"
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pytest pytest-cov>="4.0.0" hypothesis pytest-xdist
python -m pip install -e .
- name: Test with pytest
working-directory: ./
run: |
pytest -n auto --cov-report=xml --cov=pyzeal/ pyzeal/tests/
pytest --cov-report=xml --cov=pyzeal/ --cov-append -m "locator" pyzeal/tests/
- name: Upload coverage report to codecov
uses: codecov/codecov-action@v3