瀏覽代碼

Stop using test function to get window instance

Kentaro Wada 1 年之前
父節點
當前提交
7ba1b0c839
共有 1 個文件被更改,包括 3 次插入4 次删除
  1. 3 4
      tests/labelme_tests/test_app.py

+ 3 - 4
tests/labelme_tests/test_app.py

@@ -55,8 +55,7 @@ def test_MainWindow_open_json(qtbot):
         win.close()
 
 
-@pytest.mark.gui
-def test_MainWindow_open_dir(qtbot):
+def create_MainWindow_with_directory(qtbot):
     directory = osp.join(data_dir, "raw")
     win = labelme.app.MainWindow(filename=directory)
     qtbot.addWidget(win)
@@ -66,13 +65,13 @@ def test_MainWindow_open_dir(qtbot):
 
 @pytest.mark.gui
 def test_MainWindow_openNextImg(qtbot):
-    win = test_MainWindow_open_dir(qtbot)
+    win = create_MainWindow_with_directory(qtbot)
     win.openNextImg()
 
 
 @pytest.mark.gui
 def test_MainWindow_openPrevImg(qtbot):
-    win = test_MainWindow_open_dir(qtbot)
+    win = create_MainWindow_with_directory(qtbot)
     win.openNextImg()