Skip to content

Commit

Permalink
Issue #16 add a lint run to check pytest collection works
Browse files Browse the repository at this point in the history
  • Loading branch information
soxofaan committed Jan 22, 2024
1 parent 9a4ab1b commit a66c6e4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,12 @@ jobs:
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
python -m pip install isort black flake8
python -m pip install isort black flake8 pytest
- name: isort
run: python -m isort . --check --diff
# - name: black
# run: python -m black --check --diff .
# - name: flake8
# run: python -m flake8 .
- name: "pytest: check test collection"
run: python -m pytest --collect-only

0 comments on commit a66c6e4

Please sign in to comment.