Browse Source

Combine invocations of ruff for src and tests

nosoop 10 months ago
parent
commit
40065e5da7
1 changed files with 2 additions and 4 deletions
  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