set dotenv-load

test:
  ruff check src/smgdc
  mypy -p src -p tests
  pytest tests -m "not extended"

test-extended:
  mypy -p tests
  pytest tests -m extended

format:
  ruff check src tests --select I001 --fix
  ruff format src tests