diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 33416b6..e0e15cb 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -17,8 +17,11 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - python -m pip install pytest + python -m pip install pytest flake8 flake8-pytest-style pip install . + - name: Lint the test files with flake8-pytest-style + run: | + flake8 tests/ - name: Test with pytest run: | pytest