From 84fcab58fdb6da7c511381beabe9940e493b3232 Mon Sep 17 00:00:00 2001 From: kiryteo Date: Sat, 13 Jul 2024 19:44:52 -0700 Subject: [PATCH] test_graph_metrics_plotter updated --- test/test_graph_metrics_plotter.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/test_graph_metrics_plotter.py b/test/test_graph_metrics_plotter.py index 720c954..3cf1f1c 100644 --- a/test/test_graph_metrics_plotter.py +++ b/test/test_graph_metrics_plotter.py @@ -3,6 +3,9 @@ import numpy as np import pandas as pd import matplotlib.pyplot as plt +import os +import sys +sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))) from analysis.graph_metrics_plotter import GraphMetricsPlotter class TestGraphMetricsPlotter(unittest.TestCase):