CI: ignore unreferenced tests/ subdir in packages

These are used for unit testing

Signed-off-by: Caleb Connolly <caleb@postmarketos.org>
Part-of: https://gitlab.postmarketos.org/postmarketOS/pmaports/-/merge_requests/6182
This commit is contained in:
Caleb Connolly 2025-02-09 22:46:38 +01:00 committed by Clayton Craft
parent 1e7fe0c4f7
commit 2e37d40f84
No known key found for this signature in database
GPG key ID: 7A342565FF635F79

View file

@ -105,7 +105,8 @@ def test_aports_unreferenced_files():
if os.path.basename(rel_file_path) not in sources_chk \
and rel_file_path not in apkbuild["install"] \
and rel_file_path not in subpackage_installs \
and rel_file_path not in trigger_sources:
and rel_file_path not in trigger_sources \
and not rel_file_path.startswith("tests/"):
raise RuntimeError(f"{apkbuild_path}: found unreferenced file: {rel_file_path}")