Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions pym/bob/audit.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
Loading