mirror of
https://github.com/panda3d/panda3d.git
synced 2026-02-19 21:59:31 -06: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()
|