We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4303f3 commit ee1bcbcCopy full SHA for ee1bcbc
datalad_gooey/tests/test_utils.py
@@ -0,0 +1,9 @@
1
+import pytest
2
+
3
+@pytest.fixture(autouse=True, scope="session")
4
+def quitQt():
5
+ """Ensure that Qt quits properly at the end of the test suite.
6
+ See: https://github.com/The-Compiler/pytest-xvfb/issues/11
7
+ """
8
+ from PySide6.QtWidgets import QApplication
9
+ QApplication.quit()
0 commit comments