Menu
cosmic-mobile
publicLatest change 5158fb5e3a6b74cedaa8aa54ca1110b93e8d292d - Package matching emulator control scripts with app artifact by AkurAI Build
from pathlib import Path
import unittest
class PackageManifest(unittest.TestCase):
def test_package_retains_compositor_config(self):
pipeline = (Path(__file__).resolve().parents[1] / '.akurai.yml').read_text()
artifacts = pipeline.split(' artifacts:', 1)[1].splitlines()
for name in ['niri.kdl', 'capture.sh', 'emu.py']:
self.assertIn(' - ' + name, artifacts)
self.assertIn(' - target/release/cosmic-mobile', artifacts)
if __name__ == '__main__':
unittest.main()