feat: fundar plataforma mais humana

This commit is contained in:
Ami Soares
2026-04-30 06:42:00 -03:00
commit c9c1056193
183 changed files with 639629 additions and 0 deletions

16
tests/helpers.py Normal file
View File

@@ -0,0 +1,16 @@
from __future__ import annotations
from pathlib import Path
from uuid import uuid4
ROOT = Path(__file__).resolve().parents[1]
TMP_ROOT = ROOT / ".test-tmp"
def make_tmp() -> Path:
TMP_ROOT.mkdir(parents=True, exist_ok=True)
path = TMP_ROOT / uuid4().hex
path.mkdir(parents=True, exist_ok=False)
return path