diff --git a/pym/bob/audit.py b/pym/bob/audit.py index 45f7a980..7f31a722 100644 --- a/pym/bob/audit.py +++ b/pym/bob/audit.py @@ -245,6 +245,15 @@ def getBuildInfo(self): def getMetaEnv(self): return self.__data.get("metaEnv", {}) + def getSCMs(self): + return self.__data.get("scms", []) + + def getFiles(self): + return self.__data.get("files", {}) + + def getVariantId(self): + return self.__data.get("variant-id") + class Audit: SCHEMA = schema.Schema({ 'artifact' : Artifact.SCHEMA,