mirror of
https://github.com/NGSolve/netgen.git
synced 2024-11-12 00:59:16 +05:00
12 lines
184 B
Python
12 lines
184 B
Python
|
import netgen
|
||
|
import pytest
|
||
|
|
||
|
def test_gui():
|
||
|
try:
|
||
|
from tkinter import Tk
|
||
|
win = Tk()
|
||
|
except:
|
||
|
pytest.skip("can't create a window")
|
||
|
import netgen.gui
|
||
|
|