This file is indexed.

/usr/lib/python3/dist-packages/skbio/test.py is in python3-skbio 0.5.1-4.

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
14
15
16
17
18
19
# ----------------------------------------------------------------------------
# Copyright (c) 2013--, scikit-bio development team.
#
# Distributed under the terms of the Modified BSD License.
#
# The full license is in the file COPYING.txt, distributed with this software.
# ----------------------------------------------------------------------------

import sys

from skbio.util import TestRunner

test = TestRunner(__file__).test

if __name__ == '__main__':
    if test():
        sys.exit(0)
    else:
        sys.exit(1)