Skip to content

Utility functions update + example templates iteration #691

Utility functions update + example templates iteration

Utility functions update + example templates iteration #691

Workflow file for this run

name: tests
on:
push:
paths:
- '**.py'
- 'pyproject.toml'
- '.github/workflows/**'
workflow_dispatch:
jobs:
tests:
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
os: [ubuntu-latest, macos-latest, windows-latest]
exclude:
- os: macos-latest # Segmentation fault on github actions that we can not reproduce in the wild
python-version: '3.8'
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
# Temporary bugfix see https://github.com/pre-commit/pre-commit/issues/2178
- name: Pin virtualenv version
run: pip install virtualenv==20.10.0
- name: Install Poetry
uses: abatilo/[email protected]
with:
poetry-version: 1.3.2
- name: Run poetry install
run: poetry install
- name: Run pytest
timeout-minutes: 15
run: poetry run pytest -m "all_examples or metahyper"