7
7
from pytask import ExitCode
8
8
from pytask import build
9
9
from pytask import cli
10
+
10
11
from pytask_parallel import ParallelBackend
11
12
from pytask_parallel .execute import _Sleeper
12
-
13
13
from tests .conftest import restore_sys_path_and_module_after_test_execution
14
14
15
15
_IMPLEMENTED_BACKENDS = [
25
25
]
26
26
27
27
28
- @pytest .mark .end_to_end ()
28
+ @pytest .mark .end_to_end
29
29
@pytest .mark .parametrize ("parallel_backend" , _IMPLEMENTED_BACKENDS )
30
30
def test_parallel_execution (tmp_path , parallel_backend ):
31
31
source = """
@@ -47,7 +47,7 @@ def task_2(path: Annotated[Path, Product] = Path("out_2.txt")):
47
47
assert tmp_path .joinpath ("out_2.txt" ).exists ()
48
48
49
49
50
- @pytest .mark .end_to_end ()
50
+ @pytest .mark .end_to_end
51
51
@pytest .mark .parametrize ("parallel_backend" , _IMPLEMENTED_BACKENDS )
52
52
def test_parallel_execution_w_cli (runner , tmp_path , parallel_backend ):
53
53
source = """
@@ -77,7 +77,7 @@ def task_2(path: Annotated[Path, Product] = Path("out_2.txt")):
77
77
assert tmp_path .joinpath ("out_2.txt" ).exists ()
78
78
79
79
80
- @pytest .mark .end_to_end ()
80
+ @pytest .mark .end_to_end
81
81
@pytest .mark .parametrize ("parallel_backend" , _IMPLEMENTED_BACKENDS )
82
82
def test_stop_execution_when_max_failures_is_reached (tmp_path , parallel_backend ):
83
83
source = """
@@ -105,7 +105,7 @@ def task_3(): time.sleep(3)
105
105
assert len (session .execution_reports ) == 2
106
106
107
107
108
- @pytest .mark .end_to_end ()
108
+ @pytest .mark .end_to_end
109
109
@pytest .mark .parametrize ("parallel_backend" , _IMPLEMENTED_BACKENDS )
110
110
def test_task_priorities (tmp_path , parallel_backend ):
111
111
source = """
@@ -146,7 +146,7 @@ def task_5():
146
146
assert last_task_name .endswith (("task_2" , "task_5" ))
147
147
148
148
149
- @pytest .mark .end_to_end ()
149
+ @pytest .mark .end_to_end
150
150
@pytest .mark .parametrize ("parallel_backend" , _IMPLEMENTED_BACKENDS )
151
151
@pytest .mark .parametrize ("show_locals" , [True , False ])
152
152
def test_rendering_of_tracebacks_with_rich (
@@ -172,7 +172,7 @@ def task_raising_error():
172
172
assert ("[0, 1, 2, 3, 4]" in result .output ) is show_locals
173
173
174
174
175
- @pytest .mark .end_to_end ()
175
+ @pytest .mark .end_to_end
176
176
@pytest .mark .parametrize (
177
177
"parallel_backend" ,
178
178
# Capturing warnings is not thread-safe.
@@ -207,7 +207,7 @@ def task_example(produces):
207
207
assert "task_example.py::task_example[1]" in warnings_block
208
208
209
209
210
- @pytest .mark .unit ()
210
+ @pytest .mark .unit
211
211
def test_sleeper ():
212
212
sleeper = _Sleeper (timings = [1 , 2 , 3 ], timing_idx = 0 )
213
213
@@ -229,7 +229,7 @@ def test_sleeper():
229
229
assert 1 <= end - start <= 2
230
230
231
231
232
- @pytest .mark .end_to_end ()
232
+ @pytest .mark .end_to_end
233
233
@pytest .mark .parametrize ("parallel_backend" , _IMPLEMENTED_BACKENDS )
234
234
def test_task_that_return (runner , tmp_path , parallel_backend ):
235
235
source = """
@@ -249,7 +249,7 @@ def task_example() -> Annotated[str, Path("file.txt")]:
249
249
)
250
250
251
251
252
- @pytest .mark .end_to_end ()
252
+ @pytest .mark .end_to_end
253
253
@pytest .mark .parametrize ("parallel_backend" , _IMPLEMENTED_BACKENDS )
254
254
def test_task_without_path_that_return (runner , tmp_path , parallel_backend ):
255
255
source = """
@@ -270,7 +270,7 @@ def test_task_without_path_that_return(runner, tmp_path, parallel_backend):
270
270
)
271
271
272
272
273
- @pytest .mark .end_to_end ()
273
+ @pytest .mark .end_to_end
274
274
@pytest .mark .parametrize ("flag" , ["--pdb" , "--trace" , "--dry-run" ])
275
275
@pytest .mark .parametrize ("parallel_backend" , _IMPLEMENTED_BACKENDS )
276
276
def test_parallel_execution_is_deactivated (runner , tmp_path , flag , parallel_backend ):
@@ -283,7 +283,7 @@ def test_parallel_execution_is_deactivated(runner, tmp_path, flag, parallel_back
283
283
assert "Started 2 workers" not in result .output
284
284
285
285
286
- @pytest .mark .end_to_end ()
286
+ @pytest .mark .end_to_end
287
287
@pytest .mark .parametrize ("code" , ["breakpoint()" , "import pdb; pdb.set_trace()" ])
288
288
@pytest .mark .parametrize (
289
289
"parallel_backend" ,
@@ -298,7 +298,7 @@ def test_raise_error_on_breakpoint(runner, tmp_path, code, parallel_backend):
298
298
assert "You cannot use 'breakpoint()'" in result .output
299
299
300
300
301
- @pytest .mark .end_to_end ()
301
+ @pytest .mark .end_to_end
302
302
@pytest .mark .parametrize ("parallel_backend" , _IMPLEMENTED_BACKENDS )
303
303
def test_task_partialed (runner , tmp_path , parallel_backend ):
304
304
source = """
@@ -321,7 +321,7 @@ def create_text(text):
321
321
assert tmp_path .joinpath ("file.txt" ).exists ()
322
322
323
323
324
- @pytest .mark .end_to_end ()
324
+ @pytest .mark .end_to_end
325
325
@pytest .mark .parametrize ("parallel_backend" , _IMPLEMENTED_BACKENDS )
326
326
def test_execute_tasks_and_pass_values_by_python_node_return (
327
327
runner , tmp_path , parallel_backend
@@ -349,7 +349,7 @@ def task_create_file(
349
349
assert tmp_path .joinpath ("file.txt" ).read_text () == "This is the text."
350
350
351
351
352
- @pytest .mark .end_to_end ()
352
+ @pytest .mark .end_to_end
353
353
@pytest .mark .parametrize ("parallel_backend" , _IMPLEMENTED_BACKENDS )
354
354
def test_execute_tasks_and_pass_values_by_python_node_product (
355
355
runner , tmp_path , parallel_backend
0 commit comments