This commit is contained in:
Waylon Walker 2022-03-31 20:20:07 -05:00
commit 38355d2442
No known key found for this signature in database
GPG key ID: 66E2BF2B4190EFE4
9083 changed files with 1225834 additions and 0 deletions

View file

@ -0,0 +1,35 @@
import os
import subprocess
import sys
import unittest
class DocsIncludedTest(unittest.TestCase):
def test_doc_import_works(self):
from pygame.docs.__main__ import has_local_docs, open_docs
@unittest.skipIf("CI" not in os.environ, "Docs not required for local builds")
def test_docs_included(self):
from pygame.docs.__main__ import has_local_docs
self.assertTrue(has_local_docs())
@unittest.skipIf("CI" not in os.environ, "Docs not required for local builds")
def test_docs_command(self):
try:
subprocess.run(
[sys.executable, "-m", "pygame.docs"],
timeout=5,
# check ensures an exception is raised when the process fails
check=True,
# pipe stdout/stderr so that they don't clutter main stdout
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
)
except subprocess.TimeoutExpired:
# timeout errors are not an issue
pass
if __name__ == "__main__":
unittest.main()