Make getters raise KeyError instead of returning "NotExist" #325
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: | |
push: | |
branches: ['master'] | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 30 | |
strategy: | |
matrix: | |
python-version: ['3.10', '3.12'] | |
os: ['ubuntu-latest', 'windows-latest'] | |
omc-version: ['stable'] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: "Set up OpenModelica Compiler" | |
uses: OpenModelica/setup-openmodelica@v1.0 | |
with: | |
version: ${{ matrix.omc-version }} | |
packages: | | |
omc | |
libraries: | | |
'Modelica 4.0.0' | |
- run: "omc --version" | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
architecture: 'x64' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install . pytest pytest-md pytest-emoji flake8 | |
- name: Set timezone | |
uses: szenius/set-timezone@v2.0 | |
with: | |
timezoneLinux: 'Europe/Berlin' | |
- name: Lint with flake8 | |
run: | | |
flake8 . --count --statistics | |
- name: Run pytest | |
uses: pavelzw/pytest-action@v2 | |
with: | |
verbose: true | |
emoji: true | |
job-summary: true | |
custom-arguments: '-v ' | |
click-to-expand: true | |
report-title: 'Test Report' |