mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-03 18:31:55 -04:00
8 lines
116 B
Python
8 lines
116 B
Python
import pytest
|
|
|
|
|
|
@pytest.fixture
|
|
def world():
|
|
ode = pytest.importorskip("panda3d.ode")
|
|
return ode.OdeWorld()
|