"""★이 파일이 **빈 채로** 있으면 `backend/scripts` 를 가린다.

`tests/scripts` 는 시험 디렉토리인데 `__init__.py` 가 있어 **정규 패키지**가
되고, `backend/scripts` 는 `__init__.py` 가 없어 namespace 조각이다. Python 은
정규 패키지를 만나면 거기서 끝내므로 `import scripts` 가 **시험 쪽**으로 가고,
`scripts.verify_persist_all_acceptance` 가 사라진다.

`pytest tests/` 로 전체를 돌릴 때만 났다 — 그 파일 하나만 돌리면 안 난다.
`extend_path` 로 같은 이름의 다른 디렉토리를 찾아 붙인다.
"""
from pkgutil import extend_path

__path__ = extend_path(__path__, __name__)
