diff options
author | yobmod <yobmod@gmail.com> | 2021-02-28 18:44:29 +0000 |
---|---|---|
committer | yobmod <yobmod@gmail.com> | 2021-02-28 18:44:29 +0000 |
commit | 26ccee15ae1712baf68df99d3f5f2fec5517ecbd (patch) | |
tree | 20770e5e41a6efcdbb4ae7a61c252e68f1e498a8 /test/tstrunner.py | |
parent | 300261de4831207126906a6f4848a680f757fbd4 (diff) | |
download | gitpython-26ccee15ae1712baf68df99d3f5f2fec5517ecbd.tar.gz |
add newlines
Diffstat (limited to 'test/tstrunner.py')
-rw-r--r-- | test/tstrunner.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/tstrunner.py b/test/tstrunner.py new file mode 100644 index 00000000..a3bcfa3c --- /dev/null +++ b/test/tstrunner.py @@ -0,0 +1,7 @@ +import unittest +loader = unittest.TestLoader() +start_dir = '.' +suite = loader.discover(start_dir) + +runner = unittest.TextTestRunner() +runner.run(suite) |