Skip to content

Update __init__.py

Update __init__.py #7

Workflow file for this run

name: Test GUI
on:
push:
pull_request:
workflow_dispatch:
schedule:
- cron: '0 6 * * 1'
jobs:
test-gui:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: "3.9"
- name: Install uxsim and dependencies
run: pip install .
- name: Install pytest other dependencies
run: pip install pytest setuptools
- name: Run test with pytest
run: pytest tests/test_result_gui_viewer.py --durations=0 -v