Pārlūkot izejas kodu

Add mypy checking to test dir and prioritize over pytest

nosoop 10 mēneši atpakaļ
vecāks
revīzija
f6e4a2cd4b
1 mainītis faili ar 2 papildinājumiem un 1 dzēšanām
  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: