Browse Source

Combine invocations of ruff for src and tests

nosoop 10 tháng trước cách đây
mục cha
commit
40065e5da7
1 tập tin đã thay đổi với 2 bổ sung4 xóa
  1. 2 4
      .justfile

+ 2 - 4
.justfile

@@ -9,7 +9,5 @@ test-extended:
   pytest tests -m extended
 
 format:
-  ruff check src --select I001 --fix
-  ruff format src/smgdc
-  ruff check tests --select I001 --fix
-  ruff format tests
+  ruff check src tests --select I001 --fix
+  ruff format src tests