Skip to content

Fixed linting issue which though I think is silly #582

Fixed linting issue which though I think is silly

Fixed linting issue which though I think is silly #582

Workflow file for this run

name: Python tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
run-python-tests:
name: Run tests
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Run tests
run: cd python && pip install -r requirements.txt && python -m unittest