Skip to content

Allow for getting/setting item by index in menu widgets #316

Allow for getting/setting item by index in menu widgets

Allow for getting/setting item by index in menu widgets #316

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint for several python version on push and pull request
name: tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements_dev.txt
- name: Run unit tests
run: |
pip install pytest
pytest