Skip to content

Commit 76914e1

Browse files
committed
enhancement #947: fix pytest
1 parent 8041731 commit 76914e1

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

.github/workflows/pytest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@ jobs:
3333
run: uv sync --frozen --all-extras --group dev
3434
- name: Run tests
3535
run: |
36-
uv run pytest -vv -m 'not audio and not video and not wireless and not ipc_resolution' --tb=short
36+
uv run pytest -vv -m 'not audio and not video and not wireless' --tb=short
3737
env:
3838
MUJOCO_GL: disable

tests/unit_tests/conftest.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@
77

88
import pytest
99

10+
try:
11+
# Hack: import placo before reachy mini to fix an error with the Ubuntu CI
12+
import placo
13+
except ImportError:
14+
pass
15+
1016
from reachy_mini.daemon.utils import (
1117
CAMERA_PIPE_NAME,
1218
CAMERA_SOCKET_PATH,

0 commit comments

Comments
 (0)