Explorar el Código

Add mypy checking to test dir and prioritize over pytest

nosoop hace 10 meses
padre
commit
f6e4a2cd4b
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  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: