Skip to content

Fix bug; add tests

Fix bug; add tests #5

Workflow file for this run

name: python-pytest
on:
push:
branches:
- main
paths:
- packages/python/openproblems/**
pull_request:
paths:
- packages/python/openproblems/**
jobs:
linting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Using Python 3.10
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install tox
run: python -m pip install tox
- name: Run tox lint
run: |
cd packages/python/openproblems
tox -e lint
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install tox
run: python -m pip install tox
- name: Test
run: |
cd packages/python/openproblems
PYTHON_ENV="${{ matrix.python-version }}"
PYTHON_ENV_NO_DOTS=${PYTHON_ENV//.}
tox run --skip-env '^(?!py'$PYTHON_ENV_NO_DOTS').+'