From d85801719e39dd5d8003d8fde071bbabc0a16ba0 Mon Sep 17 00:00:00 2001 From: nialov Date: Wed, 15 Jan 2025 09:12:01 +0200 Subject: [PATCH] test(marimos): fix PYTHONPATH --- tests/marimos/test_validation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/marimos/test_validation.py b/tests/marimos/test_validation.py index 6d71c1f..7f7ba13 100644 --- a/tests/marimos/test_validation.py +++ b/tests/marimos/test_validation.py @@ -18,7 +18,7 @@ subprocess.check_call, env={ "PYTHONPATH": "{}:{}".format( - Path(__file__).parent.parent, + Path(__file__).parent.parent.parent, os.environ.get("PYTHONPATH"), ) },