We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aad1932 commit 395cb9aCopy full SHA for 395cb9a
2 files changed
tests/conftest.py
@@ -2,8 +2,10 @@
2
import sys
3
from pathlib import Path
4
5
-# Add backend directory to python path
6
-backend_path = Path(__file__).parent.parent / "apps" / "backend"
+# Add project and backend directories to python path
+project_path = Path(__file__).parent.parent
7
+backend_path = project_path / "apps" / "backend"
8
+sys.path.append(str(project_path))
9
sys.path.append(str(backend_path))
10
11
from core.container import ServiceContainer
tests/test_distribution.py
@@ -1,7 +1,7 @@
1
import pandas as pd
import pytest
-from apps.backend.utils.visualization.data_distribution import (
+from apps.ml.visualizations.data_distribution import (
plot_numeric_distributions
)
0 commit comments