coverage server now supports more projects
This commit is contained in:
parent
707b5c1def
commit
45ee594d58
1 changed files with 11 additions and 8 deletions
|
@ -6,16 +6,19 @@ if __name__ == '__main__':
|
|||
import urllib
|
||||
|
||||
class MainHandler(tornado.web.RequestHandler):
|
||||
def get(self):
|
||||
with open('/tmp/shadowsocks-coverage', 'rb') as f:
|
||||
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"/shadowsocks", MainHandler),
|
||||
(r"/([a-zA-Z0-9\\-_]+)", MainHandler),
|
||||
])
|
||||
|
||||
if __name__ == "__main__":
|
||||
|
|
Loading…
Reference in a new issue