Browse Source

Add mypy checking to test dir and prioritize over pytest

nosoop 10 months ago
parent
commit
f6e4a2cd4b
1 changed files with 2 additions and 1 deletions
  1. 2 1
      .justfile

+ 2 - 1
.justfile

@@ -2,10 +2,11 @@ set dotenv-load
 
 test:
   ruff check src/smgdc
+  mypy -p src -p tests
   pytest tests -m "not extended"
-  mypy -p src
 
 test-extended:
+  mypy -p tests
   pytest tests -m extended
 
 format: