Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Install test dependencies
run: |
python -m pip install --upgrade pip
pip install pytest pytest-asyncio
pip install pytest pytest-asyncio pyserial-asyncio-fast

- name: Run tests
run: pytest -q
1 change: 1 addition & 0 deletions custom_components/flipper_rc/flipper_ir.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import time
from posixpath import normpath
import re
import serial_asyncio_fast as serial_asyncio

_LOGGER = logging.getLogger(__name__)

Expand Down
Loading