Give subunit2html proper shebang.

subunit2html was missing a shebang and was being evaluated by bash
instead of python. Give it a shebang to make it work properly.

Change-Id: I8c766c32263642f3c2cc4155b979f2ad3dc1e8ed
Reviewed-on: https://review.openstack.org/17992
Reviewed-by: Jeremy Stanley <fungi@yuggoth.org>
Approved: Clark Boylan <clark.boylan@gmail.com>
Reviewed-by: Clark Boylan <clark.boylan@gmail.com>
Tested-by: Jenkins
This commit is contained in:
Clark Boylan 2012-12-12 16:10:18 -08:00 committed by Jenkins
parent 9c08aa5bce
commit 3b53ea42e7

1
modules/jenkins/files/slave_scripts/subunit2html.py Normal file → Executable file
View File

@ -1,3 +1,4 @@
#!/usr/bin/python
"""
Utility to convert a subunit stream to an html results file.
Code is adapted from the pyunit Html test runner at