From b16616c32c42c4dff5bfc49b23f6a5cc86c0a2f9 Mon Sep 17 00:00:00 2001 From: Ryo KOYAMA Date: Sat, 25 Feb 2017 10:45:50 +0900 Subject: [PATCH] [test/test_all.py] add script to test all --- test/test_all.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100755 test/test_all.py diff --git a/test/test_all.py b/test/test_all.py new file mode 100755 index 0000000..791d2ab --- /dev/null +++ b/test/test_all.py @@ -0,0 +1,7 @@ +#!/usr/bin/python +#-*- coding:utf-8 -*- +import unittest +from test_log_parser import * + +if __name__ == '__main__': + unittest.main(verbosity=2)