Remove python 3.10 skip condition for test_reload
This commit is contained in:
parent
bc542ae1c4
commit
e04ecdf554
@ -30,8 +30,7 @@ def remove_cache(mod):
|
|||||||
(
|
(
|
||||||
(pg.Qt.QT_LIB == "PySide2" and pg.Qt.QtVersion.startswith("5.15"))
|
(pg.Qt.QT_LIB == "PySide2" and pg.Qt.QtVersion.startswith("5.15"))
|
||||||
or (pg.Qt.QT_LIB == "PySide6")
|
or (pg.Qt.QT_LIB == "PySide6")
|
||||||
) and (sys.version_info > (3, 9))
|
) and (sys.version_info >= (3, 9)),
|
||||||
or (sys.version_info >= (3, 10)),
|
|
||||||
reason="Unknown Issue"
|
reason="Unknown Issue"
|
||||||
)
|
)
|
||||||
@pytest.mark.usefixtures("tmp_module")
|
@pytest.mark.usefixtures("tmp_module")
|
||||||
|
Loading…
Reference in New Issue
Block a user