File: test_progressdialog.py

package info (click to toggle)
python-pyqtgraph 0.13.7-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 8,072 kB
  • sloc: python: 54,043; makefile: 127; ansic: 40; sh: 2
file content (16 lines) | stat: -rw-r--r-- 359 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import pytest
import sys

import pyqtgraph as pg

pg.mkQApp()

@pytest.mark.skipif(
    sys.platform.startswith("linux")
    and pg.Qt.QT_LIB == "PySide6"
    and (6, 0) < pg.Qt.PySide6.__version_info__ < (6, 4, 3),
    reason="taking gui thread causes segfault"
)
def test_progress_dialog():
    with pg.ProgressDialog("test", 0, 1) as dlg:
        dlg += 1