Skip to content

Commit 23bfa7f

Browse files
[pre-commit.ci] pre-commit autoupdate (#111)
1 parent 7bb25e3 commit 23bfa7f

11 files changed

+44
-38
lines changed

.pre-commit-config.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ repos:
2727
hooks:
2828
- id: sort-all
2929
- repo: https://github.com/astral-sh/ruff-pre-commit
30-
rev: v0.4.4
30+
rev: v0.6.4
3131
hooks:
3232
- id: ruff
3333
- id: ruff-format
@@ -61,7 +61,7 @@ repos:
6161
args: [--wrap, "88"]
6262
files: (README\.md)
6363
- repo: https://github.com/codespell-project/codespell
64-
rev: v2.2.6
64+
rev: v2.3.0
6565
hooks:
6666
- id: codespell
6767
- repo: meta

docs/source/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@
100100

101101

102102
# Linkcode, based on numpy doc/source/conf.py
103-
def linkcode_resolve(domain: str, info: dict[str, str]) -> str: # noqa: C901, PLR0912
103+
def linkcode_resolve(domain: str, info: dict[str, str]) -> str: # noqa: C901
104104
"""Determine the URL corresponding to Python object."""
105105
if domain != "py":
106106
return None

docs_src/custom_executors.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
from concurrent.futures import Executor
22

33
from my_project.executor import CustomExecutor
4+
45
from pytask_parallel import ParallelBackend
56
from pytask_parallel import WorkerType
67
from pytask_parallel import registry

tests/conftest.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def invoke(self, *args, **kwargs):
6969
return super().invoke(*args, **kwargs)
7070

7171

72-
@pytest.fixture()
72+
@pytest.fixture
7373
def runner():
7474
return CustomCliRunner()
7575

tests/test_backends.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,20 @@
33
import pytest
44
from pytask import ExitCode
55
from pytask import cli
6+
67
from pytask_parallel import ParallelBackend
78
from pytask_parallel import registry
89

910

10-
@pytest.mark.end_to_end()
11+
@pytest.mark.end_to_end
1112
def test_error_requesting_custom_backend_without_registration(runner, tmp_path):
1213
tmp_path.joinpath("task_example.py").write_text("def task_example(): pass")
1314
result = runner.invoke(cli, [tmp_path.as_posix(), "--parallel-backend", "custom"])
1415
assert result.exit_code == ExitCode.FAILED
1516
assert "No registered parallel backend found" in result.output
1617

1718

18-
@pytest.mark.end_to_end()
19+
@pytest.mark.end_to_end
1920
def test_error_while_instantiating_custom_backend(runner, tmp_path):
2021
hook_source = """
2122
from pytask_parallel import ParallelBackend, registry
@@ -34,7 +35,7 @@ def task_example(): pass
3435
assert "Could not instantiate parallel backend 'custom'." in result.output
3536

3637

37-
@pytest.mark.end_to_end()
38+
@pytest.mark.end_to_end
3839
def test_register_custom_backend(runner, tmp_path):
3940
source = """
4041
from loky import get_reusable_executor

tests/test_capture.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@
33
import pytest
44
from pytask import ExitCode
55
from pytask import cli
6+
67
from pytask_parallel import ParallelBackend
78

89

9-
@pytest.mark.end_to_end()
10+
@pytest.mark.end_to_end
1011
@pytest.mark.parametrize(
1112
"parallel_backend",
1213
[

tests/test_config.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,11 @@
66
import pytest
77
from pytask import ExitCode
88
from pytask import build
9+
910
from pytask_parallel import ParallelBackend
1011

1112

12-
@pytest.mark.end_to_end()
13+
@pytest.mark.end_to_end
1314
@pytest.mark.parametrize(
1415
("pdb", "n_workers", "expected"),
1516
[
@@ -25,7 +26,7 @@ def test_interplay_between_debugging_and_parallel(tmp_path, pdb, n_workers, expe
2526
assert session.config["n_workers"] == expected
2627

2728

28-
@pytest.mark.end_to_end()
29+
@pytest.mark.end_to_end
2930
@pytest.mark.parametrize(
3031
("configuration_option", "value", "exit_code"),
3132
[

tests/test_execute.py

+15-15
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
from pytask import ExitCode
88
from pytask import build
99
from pytask import cli
10+
1011
from pytask_parallel import ParallelBackend
1112
from pytask_parallel.execute import _Sleeper
12-
1313
from tests.conftest import restore_sys_path_and_module_after_test_execution
1414

1515
_IMPLEMENTED_BACKENDS = [
@@ -25,7 +25,7 @@
2525
]
2626

2727

28-
@pytest.mark.end_to_end()
28+
@pytest.mark.end_to_end
2929
@pytest.mark.parametrize("parallel_backend", _IMPLEMENTED_BACKENDS)
3030
def test_parallel_execution(tmp_path, parallel_backend):
3131
source = """
@@ -47,7 +47,7 @@ def task_2(path: Annotated[Path, Product] = Path("out_2.txt")):
4747
assert tmp_path.joinpath("out_2.txt").exists()
4848

4949

50-
@pytest.mark.end_to_end()
50+
@pytest.mark.end_to_end
5151
@pytest.mark.parametrize("parallel_backend", _IMPLEMENTED_BACKENDS)
5252
def test_parallel_execution_w_cli(runner, tmp_path, parallel_backend):
5353
source = """
@@ -77,7 +77,7 @@ def task_2(path: Annotated[Path, Product] = Path("out_2.txt")):
7777
assert tmp_path.joinpath("out_2.txt").exists()
7878

7979

80-
@pytest.mark.end_to_end()
80+
@pytest.mark.end_to_end
8181
@pytest.mark.parametrize("parallel_backend", _IMPLEMENTED_BACKENDS)
8282
def test_stop_execution_when_max_failures_is_reached(tmp_path, parallel_backend):
8383
source = """
@@ -105,7 +105,7 @@ def task_3(): time.sleep(3)
105105
assert len(session.execution_reports) == 2
106106

107107

108-
@pytest.mark.end_to_end()
108+
@pytest.mark.end_to_end
109109
@pytest.mark.parametrize("parallel_backend", _IMPLEMENTED_BACKENDS)
110110
def test_task_priorities(tmp_path, parallel_backend):
111111
source = """
@@ -146,7 +146,7 @@ def task_5():
146146
assert last_task_name.endswith(("task_2", "task_5"))
147147

148148

149-
@pytest.mark.end_to_end()
149+
@pytest.mark.end_to_end
150150
@pytest.mark.parametrize("parallel_backend", _IMPLEMENTED_BACKENDS)
151151
@pytest.mark.parametrize("show_locals", [True, False])
152152
def test_rendering_of_tracebacks_with_rich(
@@ -172,7 +172,7 @@ def task_raising_error():
172172
assert ("[0, 1, 2, 3, 4]" in result.output) is show_locals
173173

174174

175-
@pytest.mark.end_to_end()
175+
@pytest.mark.end_to_end
176176
@pytest.mark.parametrize(
177177
"parallel_backend",
178178
# Capturing warnings is not thread-safe.
@@ -207,7 +207,7 @@ def task_example(produces):
207207
assert "task_example.py::task_example[1]" in warnings_block
208208

209209

210-
@pytest.mark.unit()
210+
@pytest.mark.unit
211211
def test_sleeper():
212212
sleeper = _Sleeper(timings=[1, 2, 3], timing_idx=0)
213213

@@ -229,7 +229,7 @@ def test_sleeper():
229229
assert 1 <= end - start <= 2
230230

231231

232-
@pytest.mark.end_to_end()
232+
@pytest.mark.end_to_end
233233
@pytest.mark.parametrize("parallel_backend", _IMPLEMENTED_BACKENDS)
234234
def test_task_that_return(runner, tmp_path, parallel_backend):
235235
source = """
@@ -249,7 +249,7 @@ def task_example() -> Annotated[str, Path("file.txt")]:
249249
)
250250

251251

252-
@pytest.mark.end_to_end()
252+
@pytest.mark.end_to_end
253253
@pytest.mark.parametrize("parallel_backend", _IMPLEMENTED_BACKENDS)
254254
def test_task_without_path_that_return(runner, tmp_path, parallel_backend):
255255
source = """
@@ -270,7 +270,7 @@ def test_task_without_path_that_return(runner, tmp_path, parallel_backend):
270270
)
271271

272272

273-
@pytest.mark.end_to_end()
273+
@pytest.mark.end_to_end
274274
@pytest.mark.parametrize("flag", ["--pdb", "--trace", "--dry-run"])
275275
@pytest.mark.parametrize("parallel_backend", _IMPLEMENTED_BACKENDS)
276276
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
283283
assert "Started 2 workers" not in result.output
284284

285285

286-
@pytest.mark.end_to_end()
286+
@pytest.mark.end_to_end
287287
@pytest.mark.parametrize("code", ["breakpoint()", "import pdb; pdb.set_trace()"])
288288
@pytest.mark.parametrize(
289289
"parallel_backend",
@@ -298,7 +298,7 @@ def test_raise_error_on_breakpoint(runner, tmp_path, code, parallel_backend):
298298
assert "You cannot use 'breakpoint()'" in result.output
299299

300300

301-
@pytest.mark.end_to_end()
301+
@pytest.mark.end_to_end
302302
@pytest.mark.parametrize("parallel_backend", _IMPLEMENTED_BACKENDS)
303303
def test_task_partialed(runner, tmp_path, parallel_backend):
304304
source = """
@@ -321,7 +321,7 @@ def create_text(text):
321321
assert tmp_path.joinpath("file.txt").exists()
322322

323323

324-
@pytest.mark.end_to_end()
324+
@pytest.mark.end_to_end
325325
@pytest.mark.parametrize("parallel_backend", _IMPLEMENTED_BACKENDS)
326326
def test_execute_tasks_and_pass_values_by_python_node_return(
327327
runner, tmp_path, parallel_backend
@@ -349,7 +349,7 @@ def task_create_file(
349349
assert tmp_path.joinpath("file.txt").read_text() == "This is the text."
350350

351351

352-
@pytest.mark.end_to_end()
352+
@pytest.mark.end_to_end
353353
@pytest.mark.parametrize("parallel_backend", _IMPLEMENTED_BACKENDS)
354354
def test_execute_tasks_and_pass_values_by_python_node_product(
355355
runner, tmp_path, parallel_backend

tests/test_jupyter/test_functional_interface.ipynb

+4-3
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,11 @@
99
"source": [
1010
"from pathlib import Path\n",
1111
"\n",
12-
"from typing_extensions import Annotated\n",
13-
"\n",
1412
"import pytask\n",
15-
"from pytask import ExitCode, PathNode, PythonNode"
13+
"from pytask import ExitCode\n",
14+
"from pytask import PathNode\n",
15+
"from pytask import PythonNode\n",
16+
"from typing_extensions import Annotated"
1617
]
1718
},
1819
{

tests/test_jupyter/test_functional_interface_w_relative_path.ipynb

+4-3
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,11 @@
99
"source": [
1010
"from pathlib import Path\n",
1111
"\n",
12-
"from typing_extensions import Annotated\n",
13-
"\n",
1412
"import pytask\n",
15-
"from pytask import ExitCode, PathNode, PythonNode"
13+
"from pytask import ExitCode\n",
14+
"from pytask import PathNode\n",
15+
"from pytask import PythonNode\n",
16+
"from typing_extensions import Annotated"
1617
]
1718
},
1819
{

tests/test_remote.py

+7-7
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def custom_builder(n_workers):
2424
tmp_path.joinpath("config.py").write_text(textwrap.dedent(source))
2525

2626

27-
@pytest.mark.end_to_end()
27+
@pytest.mark.end_to_end
2828
def test_python_node(runner, tmp_path):
2929
source = """
3030
from pathlib import Path
@@ -65,7 +65,7 @@ def task_third(
6565
assert tmp_path.joinpath("output.txt").read_text() == "Hello World!"
6666

6767

68-
@pytest.mark.end_to_end()
68+
@pytest.mark.end_to_end
6969
def test_local_path_as_input(runner, tmp_path):
7070
source = """
7171
from pathlib import Path
@@ -92,7 +92,7 @@ def task_example(path: Path = Path("in.txt")) -> Annotated[str, Path("output.txt
9292
assert tmp_path.joinpath("output.txt").read_text() == "Hello World!"
9393

9494

95-
@pytest.mark.end_to_end()
95+
@pytest.mark.end_to_end
9696
def test_local_path_as_product(runner, tmp_path):
9797
source = """
9898
from pytask import Product
@@ -119,7 +119,7 @@ def task_example(path: Annotated[Path, Product] = Path("output.txt")):
119119
assert tmp_path.joinpath("output.txt").read_text() == "Hello World!"
120120

121121

122-
@pytest.mark.end_to_end()
122+
@pytest.mark.end_to_end
123123
def test_local_path_as_return(runner, tmp_path):
124124
source = """
125125
from pathlib import Path
@@ -145,7 +145,7 @@ def task_example() -> Annotated[str, Path("output.txt")]:
145145
assert tmp_path.joinpath("output.txt").read_text() == "Hello World!"
146146

147147

148-
@pytest.mark.end_to_end()
148+
@pytest.mark.end_to_end
149149
def test_pickle_node_with_local_path_as_input(runner, tmp_path):
150150
source = """
151151
from pytask import PickleNode
@@ -175,7 +175,7 @@ def task_example(
175175
assert tmp_path.joinpath("output.txt").read_text() == "Hello World!"
176176

177177

178-
@pytest.mark.end_to_end()
178+
@pytest.mark.end_to_end
179179
def test_pickle_node_with_local_path_as_product(runner, tmp_path):
180180
source = """
181181
from pytask import PickleNode, Product
@@ -204,7 +204,7 @@ def task_example(
204204
assert pickle.loads(tmp_path.joinpath("data.pkl").read_bytes()) == "Hello World!" # noqa: S301
205205

206206

207-
@pytest.mark.end_to_end()
207+
@pytest.mark.end_to_end
208208
def test_pickle_node_with_local_path_as_return(runner, tmp_path):
209209
source = """
210210
from pytask import PickleNode

0 commit comments

Comments
 (0)