@@ -66,7 +66,7 @@ def task_run_jl_script(
6666 ):
6767 pass
6868 """
69- tmp_path .joinpath ("task_dummy .py" ).write_text (textwrap .dedent (task_source ))
69+ tmp_path .joinpath ("task_example .py" ).write_text (textwrap .dedent (task_source ))
7070 tmp_path .joinpath ("in_1.txt" ).touch ()
7171 tmp_path .joinpath ("in_2.txt" ).touch ()
7272
@@ -109,7 +109,7 @@ def test_run_jl_script_w_task_decorator(
109109 def run_jl_script(produces=Path("out.txt")):
110110 pass
111111 """
112- tmp_path .joinpath ("task_dummy .py" ).write_text (textwrap .dedent (task_source ))
112+ tmp_path .joinpath ("task_example .py" ).write_text (textwrap .dedent (task_source ))
113113
114114 julia_script = f"""
115115 { parse_config_code }
@@ -149,7 +149,7 @@ def test_raise_error_if_julia_is_not_found(
149149 def task_run_jl_script(produces=Path("out.txt")):
150150 pass
151151 """
152- tmp_path .joinpath ("task_dummy .py" ).write_text (textwrap .dedent (task_source ))
152+ tmp_path .joinpath ("task_example .py" ).write_text (textwrap .dedent (task_source ))
153153
154154 julia_script = f"""
155155 { parse_config_code }
@@ -197,7 +197,7 @@ def task_run_jl_script(produces=Path("out.txt")):
197197 pass
198198
199199 """
200- tmp_path .joinpath ("task_dummy .py" ).write_text (textwrap .dedent (task_source ))
200+ tmp_path .joinpath ("task_example .py" ).write_text (textwrap .dedent (task_source ))
201201
202202 julia_script = f"""
203203 { parse_config_code }
@@ -237,7 +237,7 @@ def task_run_jl_script(produces=Path("out.txt")):
237237 pass
238238
239239 """
240- tmp_path .joinpath ("task_dummy .py" ).write_text (textwrap .dedent (task_source ))
240+ tmp_path .joinpath ("task_example .py" ).write_text (textwrap .dedent (task_source ))
241241
242242 julia_script = f"""
243243 { parse_config_code }
@@ -278,7 +278,7 @@ def test_run_jl_script_w_environment_in_config( # noqa: PLR0913
278278 def task_run_jl_script(produces=Path("out.txt")):
279279 pass
280280 """
281- tmp_path .joinpath ("task_dummy .py" ).write_text (textwrap .dedent (task_source ))
281+ tmp_path .joinpath ("task_example .py" ).write_text (textwrap .dedent (task_source ))
282282
283283 julia_script = f"""
284284 { parse_config_code }
@@ -332,7 +332,7 @@ def test_run_jl_script_w_environment_relative_to_task(
332332 def task_run_jl_script(produces=Path("out.txt")):
333333 pass
334334 """
335- tmp_path .joinpath ("task_dummy .py" ).write_text (textwrap .dedent (task_source ))
335+ tmp_path .joinpath ("task_example .py" ).write_text (textwrap .dedent (task_source ))
336336
337337 julia_script = f"""
338338 { parse_config_code }
@@ -364,7 +364,7 @@ def test_run_jl_script_w_custom_serializer(runner, tmp_path):
364364 def task_run_jl_script(produces=Path("out.txt")):
365365 pass
366366 """
367- tmp_path .joinpath ("task_dummy .py" ).write_text (textwrap .dedent (task_source ))
367+ tmp_path .joinpath ("task_example .py" ).write_text (textwrap .dedent (task_source ))
368368
369369 julia_script = """
370370 import JSON; config = JSON.parse(read(ARGS[1], String))
@@ -392,7 +392,7 @@ def test_run_jl_script_fails_w_multiple_markers(runner, tmp_path):
392392 def task_run_jl_script(produces=Path("out.txt")):
393393 pass
394394 """
395- tmp_path .joinpath ("task_dummy .py" ).write_text (textwrap .dedent (task_source ))
395+ tmp_path .joinpath ("task_example .py" ).write_text (textwrap .dedent (task_source ))
396396 tmp_path .joinpath ("script.jl" ).touch ()
397397
398398 result = runner .invoke (cli , [tmp_path .as_posix ()])
0 commit comments