Print versions of software used in Travis output

This commit is contained in:
Stefan van der Walt
2014-05-05 16:33:46 +02:00
parent 9142c51cbb
commit b03d59f736
3 changed files with 29 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
#!/usr/bin/env python
from __future__ import print_function
import sys
screen_width = 50
print('*' * screen_width)
if len(sys.argv) > 1:
header = ' '.join(sys.argv[1:])
print('*', header.center(screen_width - 4), '*')
print('*' * screen_width)