Skip to content

Fix pytest errors and remove duplicate tests #13

Fix pytest errors and remove duplicate tests

Fix pytest errors and remove duplicate tests #13

Workflow file for this run

name: Linting
on:
pull_request:
push:
branches:
- master
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: "3.9"
# test_requirements contains tools needed for flake8, etc.
- name: Install requirements
run: pip3 install flake8==3.8.4
- name: Run linting test
run: flake8 --max-line-length=159 --ignore=F821,F401,E402 .