Skip to content

fix: dont show help menu when not in normal node (closes #214) #167

fix: dont show help menu when not in normal node (closes #214)

fix: dont show help menu when not in normal node (closes #214) #167

Workflow file for this run

name: Pytest Checks
on:
push:
branches:
- develop
pull_request:
branches:
- main
- develop
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install poetry
poetry install --no-interaction
- name: Run Tests
run: |
poetry run pytest