Skip to content

Commit

Permalink
Disable test that does not reflect a realistic scenario
Browse files Browse the repository at this point in the history
  • Loading branch information
JCZuurmond committed Jan 17, 2025
1 parent 14b8c45 commit 5c28fc9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/unit/source_code/test_functional.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,10 @@ def test_functional(sample: Functional, mock_path_lookup, simple_dependency_reso
("_child_that_uses_missing_value.py", "parent_that_dbutils_runs_child_that_misses_value_from_parent.py"),
("_child_that_uses_value_from_parent.py", "grand_parent_that_dbutils_runs_parent_that_magic_runs_child.py"),
("_child_that_uses_missing_value.py", "parent_that_imports_child_that_misses_value_from_parent.py"),
("_child_that_uses_value_from_parent.py", "grand_parent_that_imports_parent_that_magic_runs_child.py"),
# TODO: Confirm to delete this test as it is a file that imports a notebook that runs the child, which is not a
# real case and it results in the imported notebook to be treated as a file as the ImportResolver only returns
# containers for files not for notebooks (as it should)
# ("_child_that_uses_value_from_parent.py", "grand_parent_that_imports_parent_that_magic_runs_child.py"),
],
)
def test_functional_with_parent(
Expand Down

0 comments on commit 5c28fc9

Please sign in to comment.