548ccc5e94
add auto-generated tests that check that a given module can be imported, if all prerequisites are followed. see #641
9 lines
155 B
Python
9 lines
155 B
Python
import pytest
|
|
|
|
pytest.importorskip("bumblebee_status.discover")
|
|
|
|
pytest.importorskip("i3")
|
|
|
|
def test_load_module():
|
|
__import__("modules.core.xrandr")
|
|
|