This file is indexed.

/usr/share/pyshared/withsqlite/runtests.py is in python-withsqlite 0.0.0~git.20130929-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
"""Run all tests auto discovered by unittest.TestLoader"""

import unittest
import sys


if __name__ == "__main__":
    all_tests = unittest.TestLoader().discover('test')
    verbosity = 1
    for argv in sys.argv:
        if "-v" in argv:
            verbosity = argv.count("v") + 1
    unittest.TextTestRunner(verbosity=verbosity).run(all_tests)