From e37addc07098d7d561d3939ba2b4df94e14d719e Mon Sep 17 00:00:00 2001 From: Israel Date: Wed, 20 May 2026 11:41:16 -0300 Subject: [PATCH 1/2] test: add smoke test scaffold --- tests/test_smoke.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 tests/test_smoke.py diff --git a/tests/test_smoke.py b/tests/test_smoke.py new file mode 100644 index 0000000..ed14e57 --- /dev/null +++ b/tests/test_smoke.py @@ -0,0 +1,7 @@ +from pathlib import Path + + +def test_project_structure_exists(): + root = Path(__file__).resolve().parents[1] + assert (root / "project.py").is_file() + assert (root / "transforms").is_dir() From 0929208751a760dd63215f5e1b207ede0cfe06db Mon Sep 17 00:00:00 2001 From: Israel <120830821+ISRAELFLEMOS@users.noreply.github.com> Date: Wed, 20 May 2026 12:02:44 -0300 Subject: [PATCH 2/2] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- tests/test_smoke.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_smoke.py b/tests/test_smoke.py index ed14e57..15dba5b 100644 --- a/tests/test_smoke.py +++ b/tests/test_smoke.py @@ -2,6 +2,6 @@ def test_project_structure_exists(): - root = Path(__file__).resolve().parents[1] + root = Path(__file__).resolve().parent.parent assert (root / "project.py").is_file() assert (root / "transforms").is_dir()