9 lines
232 B
Python
9 lines
232 B
Python
"""pytest 공통 설정 — 프로젝트 루트를 import 경로에 올린다."""
|
|
|
|
import os
|
|
import sys
|
|
|
|
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))))
|
|
|
|
collect_ignore = ["scratch"]
|