Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ jobs:
run: pip install -r requirements.txt

- name: Lint with black
run: black --check tests/
run: black --check .

- name: Lint with ruff
run: ruff check tests/
run: ruff check .

- name: Type-check with mypy
run: mypy tests/ modpods.py --ignore-missing-imports
run: mypy . --ignore-missing-imports

- name: Run tests with pytest
run: pytest tests/ -v
2 changes: 1 addition & 1 deletion __init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
from .modpods import *
from .modpods import * # noqa: F403
Loading