Skip to content

Commit

Permalink
Skip scene renderer test on Windows
Browse files Browse the repository at this point in the history
New version of Meshcat seem to require a running ZMQ broker on
Windows. This tests passes other platforms. Going to skip this
for now.
  • Loading branch information
Daniel Farrell committed Sep 9, 2020
1 parent eb1e3b9 commit 6cb549e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/test_scene_renderer.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,12 @@
from pvtrace.scene.scene import Scene
from pvtrace.scene.renderer import MeshcatRenderer


@pytest.mark.skipif(sys.platform == 'win32', reason="Fails on Windows")
class TestMeshcatRenderer:

# Meshcat on windows seems to require a running ZMQ broker
# this is a change of behaviour introduced some point after
# meshcat v0.0.16
def test_basic_scene(self):
a = Node(name="A", parent=None)
b = Node(name="B", parent=a)
Expand Down

0 comments on commit 6cb549e

Please sign in to comment.