diff --git a/test_clustering_forced.py b/test_clustering_forced.py index a6918e0a..d3bfab0b 100644 --- a/test_clustering_forced.py +++ b/test_clustering_forced.py @@ -16,7 +16,10 @@ from codewiki.src.be.dependency_analyzer.models.core import Node from codewiki.src.config import Config -test_repo = "/Users/michaelassraf/Documents/GitHub/openframe-oss-tenant" +test_repo = os.getenv( + "TEST_REPO_PATH", + os.path.dirname(os.path.dirname(os.path.abspath(__file__))) +) config = Config( repo_path=test_repo, output_dir="/tmp/test", dependency_graph_dir="/tmp/test/deps", @@ -71,3 +74,4 @@ print(f" - {name}: {comp_count} components") print("\nšŸŽ‰ THE FIX WORKS! LLM followed the tag format!") sys.exit(0) +