Make it so GUI tests only run with --rungui

This commit is contained in:
Micah Lee 2019-01-15 21:52:42 -08:00
parent 6cb7670037
commit b39eb126c0
No known key found for this signature in database
GPG key ID: 403C2657CD994F73
33 changed files with 68 additions and 7 deletions

View file

@ -1,4 +1,5 @@
#!/usr/bin/env python3
import pytest
import unittest
from .GuiShareTest import GuiShareTest
@ -16,6 +17,7 @@ class LocalShareModeTimerTest(unittest.TestCase, GuiShareTest):
def tearDownClass(cls):
GuiShareTest.tear_down()
@pytest.mark.gui
def test_gui(self):
self.run_all_common_setup_tests()
self.run_all_share_mode_timer_tests(False)