.justfile 187 B

12345678910
  1. test:
  2. ruff check src/smgdc
  3. pytest tests
  4. mypy -p src
  5. format:
  6. ruff check src --select I001 --fix
  7. ruff format src/smgdc
  8. ruff check tests --select I001 --fix
  9. ruff format tests