Skip to content

Commit ae7b02d

Browse files
committed
chore: minor pylint running touchup
Signed-off-by: Henry Schreiner <[email protected]>
1 parent d11ce1e commit ae7b02d

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def pylint(session: nox.Session) -> None:
2626
# This needs to be installed into the package environment, and is slower
2727
# than a pre-commit check
2828
session.install("-e.[dev,test]", "pylint")
29-
session.run("pylint", "src", *session.posargs)
29+
session.run("pylint", "scikit_build_core", *session.posargs)
3030

3131

3232
@nox.session(reuse_venv=True)

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,8 @@ profile = "black"
160160

161161

162162
[tool.pylint]
163-
master.py-version = "3.7"
163+
py-version = "3.7"
164+
jobs = "0"
164165
reports.output-format = "colorized"
165166
similarities.ignore-imports = "yes"
166167
good-names = ["f"]

0 commit comments

Comments
 (0)