Skip to content

Commit

Permalink
Fix failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
stixes committed Jun 26, 2024
1 parent e8bd805 commit ae677bc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ def test_controller_should_initialize_correctly(model_mock):

@pytest.mark.parametrize("executor_constant, executor_class", [
(constants.EXECUTOR_ARDUINO, ArduinoPassthroughExecuter),
(constants.EXECUTOR_PYAUTOGUI, PyAutoGuiExecuter),
## Causes failure in Github due to missing display
# (constants.EXECUTOR_PYAUTOGUI, PyAutoGuiExecuter),
(constants.EXECUTOR_PYNPUT, PynputExecuter),
(constants.EXECUTOR_XDOTOOL, XdotoolExecuter)
])
Expand Down

0 comments on commit ae677bc

Please sign in to comment.