Skip to content

Commit

Permalink
fix xfail
Browse files Browse the repository at this point in the history
  • Loading branch information
mscheltienne committed Dec 3, 2024
1 parent 301f82c commit 74b8565
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions stimuli/keyboard/tests/test_keyboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def controller() -> Controller:
return Controller()


@pytest.mark.xfail("Unreliable on CIs.")
@pytest.mark.xfail(reason="Unreliable on CIs.")
def test_keyboard_basic(controller: Controller) -> None:
"""Test basic keyboard functionalities."""
kb = Keyboard().start(suppress=True)
Expand All @@ -35,7 +35,7 @@ def test_keyboard_basic(controller: Controller) -> None:
assert kb.get_keys() is None


@pytest.mark.xfail("Unreliable on CIs.")
@pytest.mark.xfail(reason="Unreliable on CIs.")
def test_keyboard_repr() -> None:
"""Test keyboard representation."""
kb = Keyboard()
Expand Down

0 comments on commit 74b8565

Please sign in to comment.