Skip to content

fix(interactive): avoid hanging on interface close #26

fix(interactive): avoid hanging on interface close

fix(interactive): avoid hanging on interface close #26

Workflow file for this run

name: Tests
on:
pull_request:
push:
branches:
- "**"
jobs:
unittest:
runs-on: ubuntu-latest
env:
MPLBACKEND: Agg
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: pip
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
- name: Run unit tests
run: python -m unittest discover -s tests -v