Skip to content

Commit

Permalink
skip shell=True, but ignore ruff S603
Browse files Browse the repository at this point in the history
  • Loading branch information
derekk-nm committed Sep 25, 2024
1 parent ce42b09 commit 8647e44
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,5 @@
testmo_command + testmo_args,
capture_output=True,
check=True,
cwd=pathlib.Path.cwd(),
shell=True
cwd=pathlib.Path.cwd()
)
1 change: 1 addition & 0 deletions ruff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ ignore = [
"ISC001",
"TCH002",
"PLW1514", # allow Path.open without encoding
"S603"# https://github.com/astral-sh/ruff/issues/4045
]
select = [
# Rules reference: https://docs.astral.sh/ruff/rules/
Expand Down

0 comments on commit 8647e44

Please sign in to comment.