Skip to content

Installation with pyproject.toml in src layout #25

Installation with pyproject.toml in src layout

Installation with pyproject.toml in src layout #25

Workflow file for this run

name: pytest
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
pytest:
runs-on: ubuntu-latest
env:
QT_QPA_PLATFORM: offscreen
strategy:
fail-fast: false
matrix:
python_version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: recursive
- name: Set up Python ${{ matrix.python_version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python_version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
- name: Install package
run: |
pip install -e ".[dev]"
- name: Test with pytest
run: |
pytest -sv --show-capture=no tests