Chromium Code Reviews| Index: chrome/test/functional/ispy/ispy_core/run_tests.py |
| diff --git a/chrome/test/functional/ispy/ispy_core/run_tests.py b/chrome/test/functional/ispy/ispy_core/run_tests.py |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..b4e139b398887af40853640fabe2259b880d6d85 |
| --- /dev/null |
| +++ b/chrome/test/functional/ispy/ispy_core/run_tests.py |
| @@ -0,0 +1,6 @@ |
| +import unittest |
| + |
| +if __name__ == '__main__': |
| + suite = unittest.TestLoader().discover('.', pattern='*_test.py') |
| + unittest.TextTestRunner(verbosity=2).run(suite) |
| + |