26 lines
879 B
Python
26 lines
879 B
Python
#!/usr/bin/env python
|
|
|
|
if __name__ == '__main__':
|
|
import tornado.ioloop
|
|
import tornado.web
|
|
import urllib
|
|
|
|
class MainHandler(tornado.web.RequestHandler):
|
|
def get(self, project):
|
|
try:
|
|
with open('/tmp/%s-coverage' % project, 'rb') as f:
|
|
coverage = f.read().strip()
|
|
self.redirect(('https://img.shields.io/badge/'
|
|
'coverage-%s-brightgreen.svg'
|
|
'?style=flat') %
|
|
urllib.quote(coverage))
|
|
except IOError:
|
|
raise tornado.web.HTTPError(404)
|
|
|
|
application = tornado.web.Application([
|
|
(r"/([a-zA-Z0-9\\-_]+)", MainHandler),
|
|
])
|
|
|
|
if __name__ == "__main__":
|
|
application.listen(8888, address='127.0.0.1')
|
|
tornado.ioloop.IOLoop.instance().start()
|