Skip to content

Fix issue where thermal runtime parameters were not being propagated into optim_conf #793

Fix issue where thermal runtime parameters were not being propagated into optim_conf

Fix issue where thermal runtime parameters were not being propagated into optim_conf #793

Workflow file for this run

name: Python test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11"]
os: [ubuntu-latest, macos-latest, windows-latest]
env:
OS: ${{ matrix.os }}
PYTHON: ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Special dependencies for macos
run: |
brew install hdf5
pip3 install numpy==1.26.0
pip3 install tables==3.9.1
if: ${{ matrix.os == 'macos-latest' }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pytest requests-mock
python setup.py install
- name: Test with pytest
run: |
pytest