Skip to content

Commit eb765ca

Browse files
committed
Fix.
1 parent 1e8a8c0 commit eb765ca

File tree

1 file changed

+10
-11
lines changed

1 file changed

+10
-11
lines changed

tests/test_execute.py

+10-11
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
from pytask import ExitCode
88
from pytask import build
99
from pytask import cli
10-
from pytask_parallel.backends import PARALLEL_BACKENDS
1110
from pytask_parallel.backends import ParallelBackend
1211
from pytask_parallel.execute import _Sleeper
1312

@@ -19,7 +18,7 @@ class Session:
1918

2019

2120
@pytest.mark.end_to_end()
22-
@pytest.mark.parametrize("parallel_backend", PARALLEL_BACKENDS)
21+
@pytest.mark.parametrize("parallel_backend", ParallelBackend)
2322
def test_parallel_execution(tmp_path, parallel_backend):
2423
source = """
2524
from pytask import Product
@@ -41,7 +40,7 @@ def task_2(path: Annotated[Path, Product] = Path("out_2.txt")):
4140

4241

4342
@pytest.mark.end_to_end()
44-
@pytest.mark.parametrize("parallel_backend", PARALLEL_BACKENDS)
43+
@pytest.mark.parametrize("parallel_backend", ParallelBackend)
4544
def test_parallel_execution_w_cli(runner, tmp_path, parallel_backend):
4645
source = """
4746
from pytask import Product
@@ -71,7 +70,7 @@ def task_2(path: Annotated[Path, Product] = Path("out_2.txt")):
7170

7271

7372
@pytest.mark.end_to_end()
74-
@pytest.mark.parametrize("parallel_backend", PARALLEL_BACKENDS)
73+
@pytest.mark.parametrize("parallel_backend", ParallelBackend)
7574
def test_stop_execution_when_max_failures_is_reached(tmp_path, parallel_backend):
7675
source = """
7776
import time
@@ -99,7 +98,7 @@ def task_3(): time.sleep(3)
9998

10099

101100
@pytest.mark.end_to_end()
102-
@pytest.mark.parametrize("parallel_backend", PARALLEL_BACKENDS)
101+
@pytest.mark.parametrize("parallel_backend", ParallelBackend)
103102
def test_task_priorities(tmp_path, parallel_backend):
104103
source = """
105104
import pytask
@@ -140,7 +139,7 @@ def task_5():
140139

141140

142141
@pytest.mark.end_to_end()
143-
@pytest.mark.parametrize("parallel_backend", PARALLEL_BACKENDS)
142+
@pytest.mark.parametrize("parallel_backend", ParallelBackend)
144143
@pytest.mark.parametrize("show_locals", [True, False])
145144
def test_rendering_of_tracebacks_with_rich(
146145
runner, tmp_path, parallel_backend, show_locals
@@ -222,7 +221,7 @@ def test_sleeper():
222221

223222

224223
@pytest.mark.end_to_end()
225-
@pytest.mark.parametrize("parallel_backend", PARALLEL_BACKENDS)
224+
@pytest.mark.parametrize("parallel_backend", ParallelBackend)
226225
def test_task_that_return(runner, tmp_path, parallel_backend):
227226
source = """
228227
from pathlib import Path
@@ -242,7 +241,7 @@ def task_example() -> Annotated[str, Path("file.txt")]:
242241

243242

244243
@pytest.mark.end_to_end()
245-
@pytest.mark.parametrize("parallel_backend", PARALLEL_BACKENDS)
244+
@pytest.mark.parametrize("parallel_backend", ParallelBackend)
246245
def test_task_without_path_that_return(runner, tmp_path, parallel_backend):
247246
source = """
248247
from pathlib import Path
@@ -264,7 +263,7 @@ def test_task_without_path_that_return(runner, tmp_path, parallel_backend):
264263

265264
@pytest.mark.end_to_end()
266265
@pytest.mark.parametrize("flag", ["--pdb", "--trace", "--dry-run"])
267-
@pytest.mark.parametrize("parallel_backend", PARALLEL_BACKENDS)
266+
@pytest.mark.parametrize("parallel_backend", ParallelBackend)
268267
def test_parallel_execution_is_deactivated(runner, tmp_path, flag, parallel_backend):
269268
tmp_path.joinpath("task_example.py").write_text("def task_example(): pass")
270269
result = runner.invoke(
@@ -278,7 +277,7 @@ def test_parallel_execution_is_deactivated(runner, tmp_path, flag, parallel_back
278277
@pytest.mark.end_to_end()
279278
@pytest.mark.parametrize("code", ["breakpoint()", "import pdb; pdb.set_trace()"])
280279
@pytest.mark.parametrize(
281-
"parallel_backend", [i for i in PARALLEL_BACKENDS if i != ParallelBackend.THREADS]
280+
"parallel_backend", [i for i in ParallelBackend if i != ParallelBackend.THREADS]
282281
)
283282
def test_raise_error_on_breakpoint(runner, tmp_path, code, parallel_backend):
284283
tmp_path.joinpath("task_example.py").write_text(f"def task_example(): {code}")
@@ -290,7 +289,7 @@ def test_raise_error_on_breakpoint(runner, tmp_path, code, parallel_backend):
290289

291290

292291
@pytest.mark.end_to_end()
293-
@pytest.mark.parametrize("parallel_backend", PARALLEL_BACKENDS)
292+
@pytest.mark.parametrize("parallel_backend", ParallelBackend)
294293
def test_task_partialed(runner, tmp_path, parallel_backend):
295294
source = """
296295
from pathlib import Path

0 commit comments

Comments
 (0)