Files
korin-timer/tests/test_gitea_actions_workflow.py
T
magges 65b70e3350
Build AppImage / build-appimage (push) Successful in 43s
fix: bundle PyGObject Cairo support
2026-08-03 20:40:43 +02:00

27 lines
896 B
Python

"""Regression checks for the AppImage Gitea Actions workflow."""
from pathlib import Path
import unittest
ROOT = Path(__file__).resolve().parents[1]
WORKFLOW = ROOT / ".gitea" / "workflows" / "build-appimage.yaml"
class GiteaActionsWorkflowTests(unittest.TestCase):
def test_build_workflow_creates_and_uploads_the_appimage(self) -> None:
workflow = WORKFLOW.read_text()
self.assertIn("on:", workflow)
self.assertIn("workflow_dispatch:", workflow)
self.assertIn("runs-on: ubuntu-latest", workflow)
self.assertIn("container: node:24-trixie", workflow)
self.assertIn("python3-gi-cairo", workflow)
self.assertIn("./packaging/build-appimage.sh", workflow)
self.assertIn("actions/upload-artifact@v3", workflow)
self.assertIn("path: build/Korin-Timer.AppImage", workflow)
if __name__ == "__main__":
unittest.main()