Skip to content

Commit

Permalink
Merge branch 'main' into emilien/better-bufferization
Browse files Browse the repository at this point in the history
  • Loading branch information
PapyChacal authored Aug 17, 2024
2 parents 8b0b94f + 7473b87 commit a914a27
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ repos:
hooks:
- id: check-yaml
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.5.7
rev: v0.6.0
hooks:
- id: ruff
types_or: [ python, pyi, jupyter ]
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ dev = [
"lit<19.0.0",
"marimo==0.7.20",
"pre-commit==3.8.0",
"ruff==0.5.7",
"ruff==0.6.0",
"asv<0.7",
"nbconvert>=7.7.2,<8.0.0",
"textual-dev==1.5.1",
Expand Down
10 changes: 5 additions & 5 deletions tests/interactive/test_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
from xdsl.utils.parse_pipeline import PipelinePassSpec, parse_pipeline


@pytest.mark.asyncio()
@pytest.mark.asyncio
async def test_inputs():
"""Test different inputs produce desired result."""
async with InputApp().run_test() as pilot:
Expand Down Expand Up @@ -94,7 +94,7 @@ async def test_inputs():
assert app.current_module.is_structurally_equivalent(expected_module)


@pytest.mark.asyncio()
@pytest.mark.asyncio
async def test_buttons():
"""Test pressing keys has the desired result."""
async with InputApp().run_test() as pilot:
Expand Down Expand Up @@ -275,7 +275,7 @@ async def test_buttons():
assert app.condense_mode is False


@pytest.mark.asyncio()
@pytest.mark.asyncio
async def test_rewrites():
"""Test rewrite application has the desired result."""
async with InputApp().run_test() as pilot:
Expand Down Expand Up @@ -342,7 +342,7 @@ async def test_rewrites():
)


@pytest.mark.asyncio()
@pytest.mark.asyncio
async def test_passes():
"""Test pass application has the desired result."""
async with InputApp().run_test() as pilot:
Expand Down Expand Up @@ -434,7 +434,7 @@ async def test_passes():
assert app.current_module.is_structurally_equivalent(expected_module)


@pytest.mark.asyncio()
@pytest.mark.asyncio
async def test_argument_pass_screen():
"""Test that clicking on a pass that requires passes opens a screen to specify them."""
async with InputApp().run_test() as pilot:
Expand Down

0 comments on commit a914a27

Please sign in to comment.