Add a basic website test

This commit is contained in:
Miguel Jacq 2019-09-03 11:51:59 +10:00
parent ef78a9c7ed
commit 5defd4a10b
No known key found for this signature in database
GPG key ID: EEA4341C6D97A0B6
3 changed files with 127 additions and 0 deletions

View file

@ -0,0 +1,25 @@
#!/usr/bin/env python3
import pytest
import unittest
from .GuiWebsiteTest import GuiWebsiteTest
class LocalWebsiteModeTest(unittest.TestCase, GuiWebsiteTest):
@classmethod
def setUpClass(cls):
test_settings = {
}
cls.gui = GuiWebsiteTest.set_up(test_settings)
@classmethod
def tearDownClass(cls):
GuiWebsiteTest.tear_down()
@pytest.mark.gui
@pytest.mark.skipif(pytest.__version__ < '2.9', reason="requires newer pytest")
def test_gui(self):
#self.run_all_common_setup_tests()
self.run_all_website_mode_download_tests(False, False)
if __name__ == "__main__":
unittest.main()