6 lines
179 B
Python
6 lines
179 B
Python
"""Configuración de pytest: asegura que el paquete `app` sea importable."""
|
|
import os
|
|
import sys
|
|
|
|
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|