Skip to content

Commit

Permalink
CI: Install full dependencies for pylint.
Browse files Browse the repository at this point in the history
  • Loading branch information
ubernostrum committed Oct 31, 2024
1 parent 2bcdbbc commit f0710ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ def lint_pylint(session: nox.Session) -> None:
"""
# Pylint requires that all dependencies be importable during the run, so unlike
# other lint tasks we just install the package.
session.install("pylint", "pylint-django")
session.install("pylint", "pylint-django", ".[tests]")
session.run(f"python{session.python}", "-Im", "pylint", "--version")
session.run(f"python{session.python}", "-Im", "pylint", "src/", "tests/")
clean()
Expand Down

0 comments on commit f0710ac

Please sign in to comment.