Skip to content

Development PR of v0.1.7 #37

Development PR of v0.1.7

Development PR of v0.1.7 #37

Workflow file for this run

name: Tests
on:
pull_request:
branches: ["main", "releases/**"]
types: [review_requested, opened]
paths: ["src/**.py", "tests/**.py", "tests.yml"]
push:
branches: ["main", "releases/**"]
paths: ["src/**.py", "tests/**.py", "tests.yml"]
workflow_dispatch:
jobs:
test:
name: OS ${{ matrix.os }}, Python ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pytest pytest-cov
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
python -m pip install -e .
- name: Test with pytest
run: |
pytest --cov=spey tests/*py #--cov-fail-under 99