Fix test path
Some checks failed
Python Application Tests / build (3.13) (pull_request) Failing after 8s

This commit is contained in:
Logan Cusano
2025-12-29 19:43:11 -05:00
parent 497cbccc80
commit 80f5eb3f50

View File

@@ -7,7 +7,7 @@ import os
# The router is included in the main app, so we test through it.
# We need to adjust the python path for imports to work correctly
import sys
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..', 'app')))
from app.node_main import app