There was an error while loading. Please reload this page.
1 parent 8041731 commit 76914e1Copy full SHA for 76914e1
2 files changed
.github/workflows/pytest.yml
@@ -33,6 +33,6 @@ jobs:
33
run: uv sync --frozen --all-extras --group dev
34
- name: Run tests
35
run: |
36
- uv run pytest -vv -m 'not audio and not video and not wireless and not ipc_resolution' --tb=short
+ uv run pytest -vv -m 'not audio and not video and not wireless' --tb=short
37
env:
38
MUJOCO_GL: disable
tests/unit_tests/conftest.py
@@ -7,6 +7,12 @@
7
8
import pytest
9
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
+
16
from reachy_mini.daemon.utils import (
17
CAMERA_PIPE_NAME,
18
CAMERA_SOCKET_PATH,
0 commit comments