Skip to content

Commit f0710ac

Browse files
committed
CI: Install full dependencies for pylint.
1 parent 2bcdbbc commit f0710ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ def lint_pylint(session: nox.Session) -> None:
309309
"""
310310
# Pylint requires that all dependencies be importable during the run, so unlike
311311
# other lint tasks we just install the package.
312-
session.install("pylint", "pylint-django")
312+
session.install("pylint", "pylint-django", ".[tests]")
313313
session.run(f"python{session.python}", "-Im", "pylint", "--version")
314314
session.run(f"python{session.python}", "-Im", "pylint", "src/", "tests/")
315315
clean()

0 commit comments

Comments
 (0)