Преглед на файлове

Add mypy checking to test dir and prioritize over pytest

nosoop преди 10 месеца
родител
ревизия
f6e4a2cd4b
променени са 1 файла, в които са добавени 2 реда и са изтрити 1 реда
  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: