Skip to content
Snippets Groups Projects
Commit f79fff0d authored by Oscar Gustafsson's avatar Oscar Gustafsson :bicyclist:
Browse files

No GUI test if not importable

parent 841c92a0
No related branches found
No related tags found
No related merge requests found
Pipeline #72146 passed
import pytest import pytest
import b_asic.GUI as GUI try:
import b_asic.GUI as GUI
except ImportError:
pytestmark = pytest.mark.skip('Qt not setup')
def test_start(qtbot): def test_start(qtbot):
widget = GUI.MainWindow() widget = GUI.MainWindow()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment