Skip to content

Commit 9a66f3c

Browse files
[pre-commit.ci] pre-commit autoupdate (#25)
1 parent f3bc17a commit 9a66f3c

2 files changed

Lines changed: 5 additions & 8 deletions

File tree

.pre-commit-config.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ repos:
1616
- id: trailing-whitespace
1717

1818
- repo: https://github.com/PyCQA/isort
19-
rev: "5.11.4"
19+
rev: "5.12.0"
2020
hooks:
2121
- id: isort
2222

@@ -27,14 +27,14 @@ repos:
2727
args: ["--py310-plus"]
2828

2929
- repo: https://github.com/hadialqattan/pycln
30-
rev: "v2.1.2"
30+
rev: "v2.1.3"
3131
hooks:
3232
- id: pycln
3333
args: [--config=pyproject.toml]
3434
stages: [manual]
3535

3636
- repo: https://github.com/psf/black
37-
rev: "22.12.0"
37+
rev: "23.3.0"
3838
hooks:
3939
- id: black
4040

@@ -45,7 +45,7 @@ repos:
4545
additional_dependencies: [flake8-bugbear]
4646

4747
- repo: https://github.com/pre-commit/mirrors-mypy
48-
rev: "v0.991"
48+
rev: "v1.1.1"
4949
hooks:
5050
- id: mypy
5151
args: []
@@ -58,7 +58,7 @@ repos:
5858
- pytest
5959

6060
- repo: https://github.com/codespell-project/codespell
61-
rev: "v2.2.2"
61+
rev: "v2.2.4"
6262
hooks:
6363
- id: codespell
6464
args: ["-L", "te,slowy,aray,ba,nd,classs,crate,feld,lits"]

pyodide_cli/tests/test_cli.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88

99
@pytest.fixture(scope="module")
1010
def plugins():
11-
1211
test_plugin = pathlib.Path(__file__).parent / "plugin-test"
1312

1413
subprocess.run(["pip", "install", str(test_plugin)])
@@ -52,7 +51,6 @@ def func(q: Queue, with_sphinx=False):
5251

5352

5453
def test_plugin_origin(plugins):
55-
5654
output = check_output(["pyodide", "--help"]).decode("utf-8")
5755
msg = "Registered by: plugin-test"
5856

@@ -61,7 +59,6 @@ def test_plugin_origin(plugins):
6159

6260
@pytest.mark.parametrize("entrypoint", ["plugin_test_app", "plugin_test_func"])
6361
def test_plugin_origin_subcommand(plugins, entrypoint):
64-
6562
output = check_output(["pyodide", entrypoint, "--help"]).decode("utf-8")
6663
msg = "Registered by: plugin-test"
6764

0 commit comments

Comments
 (0)