Skip to content

Commit

Permalink
fix import paths
Browse files Browse the repository at this point in the history
  • Loading branch information
mikivee committed Nov 19, 2024
1 parent 25b0e82 commit 38c5cf9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/test_constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import sys

if os.environ.get("DATABRICKS_RUNTIME_VERSION", None):
sys.path.append("../src")
sys.path.append("src")

import unittest
from dmutils import constants
Expand Down
4 changes: 2 additions & 2 deletions tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
import unittest

if os.environ.get("DATABRICKS_RUNTIME_VERSION", None):
sys.path.append("../src")
sys.path.append("src")

from dmutils import constants, bsb, data_cleaning
from dmutils import constants

# TODO: Remove skips for unit test once we have spark testing working on git:
# https://www.notion.so/rewiringamerica/Local-Spark-Testing-4aef885e20034c18b1a2fba6c355e82c?pvs=4
Expand Down

0 comments on commit 38c5cf9

Please sign in to comment.