summaryrefslogtreecommitdiff
path: root/tests/local_onionshare_share_mode_password_persistent_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/local_onionshare_share_mode_password_persistent_test.py')
-rw-r--r--tests/local_onionshare_share_mode_password_persistent_test.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/local_onionshare_share_mode_password_persistent_test.py b/tests/local_onionshare_share_mode_password_persistent_test.py
index 5b515ca1..067815f7 100644
--- a/tests/local_onionshare_share_mode_password_persistent_test.py
+++ b/tests/local_onionshare_share_mode_password_persistent_test.py
@@ -4,6 +4,7 @@ import unittest
from .GuiShareTest import GuiShareTest
+
class LocalShareModePersistentPasswordTest(unittest.TestCase, GuiShareTest):
@classmethod
def setUpClass(cls):
@@ -20,10 +21,11 @@ class LocalShareModePersistentPasswordTest(unittest.TestCase, GuiShareTest):
GuiShareTest.tear_down()
@pytest.mark.gui
- @pytest.mark.skipif(pytest.__version__ < '2.9', reason="requires newer pytest")
+ @pytest.mark.skipif(pytest.__version__ < "2.9", reason="requires newer pytest")
def test_gui(self):
self.run_all_common_setup_tests()
self.run_all_share_mode_persistent_tests(False, True)
+
if __name__ == "__main__":
unittest.main()