Selaa lähdekoodia

Add mypy checking to test dir and prioritize over pytest

nosoop 10 kuukautta sitten
vanhempi
commit
f6e4a2cd4b
1 muutettua tiedostoa jossa 2 lisäystä ja 1 poistoa
  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: