-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_parallel.py
116 lines (94 loc) · 2.9 KB
/
test_parallel.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
"""Contains test which ensure that the plugin works with pytask-parallel."""
from __future__ import annotations
import textwrap
import pytest
from pytask import ExitCode
from pytask import cli
from tests.conftest import ROOT
from tests.conftest import needs_julia
from tests.conftest import parametrize_parse_code_serializer_suffix
try:
import pytask_parallel # noqa: F401
except ImportError: # pragma: no cover
_IS_PYTASK_PARALLEL_INSTALLED = False
else:
_IS_PYTASK_PARALLEL_INSTALLED = True
pytestmark = pytest.mark.skipif(
not _IS_PYTASK_PARALLEL_INSTALLED,
reason="Tests require pytask-parallel.",
)
@needs_julia
@pytest.mark.end_to_end
@parametrize_parse_code_serializer_suffix
def test_parallel_parametrization_over_source_files_w_loop(
runner,
tmp_path,
parse_config_code,
serializer,
suffix,
):
"""Test parallelization over source files.
Same as in README.md.
"""
source = f"""
import pytask
for i in range(1, 3):
@pytask.mark.task(kwargs={{"content": i}})
@pytask.mark.julia(
script=f"script_{{i}}.jl",
serializer="{serializer}",
suffix="{suffix}",
project="{ROOT.as_posix()}",
)
@pytask.mark.produces(f"{{i}}.csv")
def task_execute_julia():
pass
"""
tmp_path.joinpath("task_dummy.py").write_text(textwrap.dedent(source))
julia_script = f"""
{parse_config_code}
write(config["produces"], config["content"])
"""
tmp_path.joinpath("script_1.jl").write_text(textwrap.dedent(julia_script))
julia_script = f"""
{parse_config_code}
write(config["produces"], config["content"])
"""
tmp_path.joinpath("script_2.jl").write_text(textwrap.dedent(julia_script))
result = runner.invoke(cli, [tmp_path.as_posix(), "-n", 2])
assert result.exit_code == ExitCode.OK
@needs_julia
@pytest.mark.end_to_end
@parametrize_parse_code_serializer_suffix
def test_parallel_parametrization_over_source_file_w_loop(
runner,
tmp_path,
parse_config_code,
serializer,
suffix,
):
"""Test parallelization over the same source file.
Same as in README.md.
"""
source = f"""
import pytask
for i in range(2):
@pytask.mark.task(kwargs={{"number": i}})
@pytask.mark.julia(
script="script.jl",
serializer="{serializer}",
suffix="{suffix}",
project="{ROOT.as_posix()}",
)
@pytask.mark.produces(f"{{i}}.csv")
def task_execute_julia_script():
pass
"""
tmp_path.joinpath("task_dummy.py").write_text(textwrap.dedent(source))
julia_script = f"""
{parse_config_code}
write(config["produces"], config["number"])
"""
tmp_path.joinpath("script.jl").write_text(textwrap.dedent(julia_script))
result = runner.invoke(cli, [tmp_path.as_posix(), "-n", 2])
assert result.exit_code == ExitCode.OK