Skip some test examples (#937)
* Skip RemoteSpeedTest.py during testing * Skip `optics_demos.py` test on PySide 1. 2.4 due to documented pyside bug
This commit is contained in:
parent
132f417f72
commit
0cc4900d7a
@ -54,7 +54,9 @@ installedFrontends = sorted([frontend for frontend, isPresent in frontends.items
|
|||||||
|
|
||||||
exceptionCondition = namedtuple("exceptionCondition", ["condition", "reason"])
|
exceptionCondition = namedtuple("exceptionCondition", ["condition", "reason"])
|
||||||
conditionalExampleTests = {
|
conditionalExampleTests = {
|
||||||
"hdf5.py": exceptionCondition(False, reason="Example requires user interaction and is not suitable for testing")
|
"hdf5.py": exceptionCondition(False, reason="Example requires user interaction and is not suitable for testing"),
|
||||||
|
"RemoteSpeedTest.py": exceptionCondition(False, reason="Test is being problematic on CI machines"),
|
||||||
|
"optics_demos.py": exceptionCondition(not frontends[Qt.PYSIDE], reason="Test fails due to PySide bug: https://bugreports.qt.io/browse/PYSIDE-671")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user