Skip to content

Move tests to pytest #8

Move tests to pytest

Move tests to pytest #8

Workflow file for this run

name: Lint
on:
push:
paths:
- '**.py'
pull_request:
paths:
- '**.py'
jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Install Python dependencies
run: |
python -m pip install .[lint]
- name: Lint
run: |
flake8 --ignore=E501,E261,W503 --exclude=.dtk_tools emod_api