This file is indexed.

/usr/lib/python2.7/dist-packages/qtpy/tests/runtests.py is in python-qtpy 1.3.1-1build1.

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
20
21
22
23
24
25
26
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# ----------------------------------------------------------------------------
# Copyright © 2015- The Spyder Development Team
#
# Licensed under the terms of the MIT License
# ----------------------------------------------------------------------------

"""File for running tests programmatically."""

# Standard library imports
import sys

# Third party imports
import qtpy  # to ensure that Qt4 uses API v2
import pytest


def main():
    """Run pytest tests."""
    errno = pytest.main(['-x', 'qtpy',  '-v', '-rw', '--durations=10',
                         '--cov=qtpy', '--cov-report=term-missing'])
    sys.exit(errno)

if __name__ == '__main__':
    main()