Skip to content

Commit ffd778f

Browse files
committed
fix ruff command line
Signed-off-by: Sylvain Hellegouarch <sh@defuze.org>
1 parent 7c87361 commit ffd778f

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@
99
* Bump dependencies
1010
* Cleanup GPT output for rendering
1111

12+
### Fixed
13+
14+
* Command line argument for `ruff`
15+
1216
## [0.75.0][]
1317

1418
[0.75.0]: https://github.com/chaostoolkit-incubator/chaostoolkit-reliably/compare/0.74.0...0.75.0

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,6 @@ testpaths = ["tests"]
8888
addopts = "-v -rxs --cov chaosreliably --cov-report term-missing:skip-covered -p no:warnings"
8989

9090
[tool.pdm.scripts]
91-
lint = {composite = ["ruff chaosreliably/", "isort --check-only --profile black chaosreliably/", "black --check --diff chaosreliably/", "mypy chaosreliably/", "bandit -r chaosreliably"]}
92-
format = {composite = ["isort --profile black chaosreliably/", "black chaosreliably/", "ruff chaosreliably/ --fix"]}
91+
lint = {composite = ["ruff check chaosreliably/", "isort --check-only --profile black chaosreliably/", "black --check --diff chaosreliably/", "mypy chaosreliably/", "bandit -r chaosreliably"]}
92+
format = {composite = ["isort --profile black chaosreliably/", "black chaosreliably/", "ruff check chaosreliably/ --fix"]}
9393
test = {cmd = "pytest"}

0 commit comments

Comments
 (0)