Merge pull request #2006 from j9ac9k/revise-reload-skip-condition

Remove python 3.10 skip condition for test_reload
This commit is contained in:
Ogi Moore 2021-10-06 23:43:05 -07:00 committed by GitHub
commit e8b77a11e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -30,8 +30,7 @@ def remove_cache(mod):
(
(pg.Qt.QT_LIB == "PySide2" and pg.Qt.QtVersion.startswith("5.15"))
or (pg.Qt.QT_LIB == "PySide6")
) and (sys.version_info > (3, 9))
or (sys.version_info >= (3, 10)),
) and (sys.version_info >= (3, 9)),
reason="Unknown Issue"
)
@pytest.mark.usefixtures("tmp_module")