From 3957ac86224e30abcf3ad064a8dc3d0b1de5d677 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 18 Aug 2025 17:15:00 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- tests/languages/julia_test.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/languages/julia_test.py b/tests/languages/julia_test.py index c74bd257..2a5d09e7 100644 --- a/tests/languages/julia_test.py +++ b/tests/languages/julia_test.py @@ -30,6 +30,7 @@ def test_julia_hook(tmp_path): expected = (0, b'Hello, world!\n') assert run_language(tmp_path, julia, 'src/main.jl') == expected + def test_julia_hook_version(tmp_path): code = """ using Example @@ -45,6 +46,7 @@ def test_julia_hook_version(tmp_path): version='1.10.10', ) == expected + def test_julia_hook_with_startup(tmp_path): depot_path = tmp_path.joinpath('depot') depot_path.joinpath('config').mkdir(parents=True) @@ -55,6 +57,7 @@ def test_julia_hook_with_startup(tmp_path): with mock.patch.dict(os.environ, {'JULIA_DEPOT_PATH': depo_path_var}): test_julia_hook(tmp_path) + def test_julia_hook_manifest(tmp_path): code = """ using Example