summaryrefslogtreecommitdiff
path: root/post-build-report.py
diff options
context:
space:
mode:
Diffstat (limited to 'post-build-report.py')
-rw-r--r--post-build-report.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/post-build-report.py b/post-build-report.py
index 0cb6e8c..0ffc56f 100644
--- a/post-build-report.py
+++ b/post-build-report.py
@@ -111,6 +111,10 @@ def _results(workspace_path):
if __name__ == '__main__':
+ for root, dirs, files in os.walk('.'):
+ print root
+ for f in files:
+ print join(root, f)
jenkins_project_name = os.environ.get("SOURCE_PROJECT_NAME")
jenkins_build_number = os.environ.get("SOURCE_BUILD_NUMBER")