This file is indexed.

/usr/lib/python3/dist-packages/pytest_pylint-0.6.0.egg-info/PKG-INFO is in python3-pytest-pylint 0.6.0-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
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
Metadata-Version: 1.1
Name: pytest-pylint
Version: 0.6.0
Summary: pytest plugin to check source code with pylint
Home-page: https://github.com/carsongee/pytest-pylint
Author: Carson Gee
Author-email: x@carsongee.com
License: MIT
Description: pytest pylint
        -------------
        .. image:: https://img.shields.io/travis/carsongee/pytest-pylint.svg
            :target: https://travis-ci.org/carsongee/orcoursetrion
        .. image:: https://img.shields.io/coveralls/carsongee/pytest-pylint.svg
            :target: https://coveralls.io/r/carsongee/pytest-pylint
        .. image:: https://img.shields.io/pypi/v/pytest-pylint.svg
            :target: https://pypi.python.org/pypi/pytest-pylint
        .. image:: https://img.shields.io/pypi/dm/pytest-pylint.svg
            :target: https://pypi.python.org/pypi/pytest-pylint
        .. image:: https://img.shields.io/pypi/l/pytest-pylint.svg
            :target: https://pypi.python.org/pypi/pytest-pylint
        
        Run pylint with pytest and have configurable rule types
        (i.e. Convention, Warn, and Error) fail the build.  You can also
        specify a pylintrc file.
        
        Sample Usage
        ============
        .. code-block:: shell
        
           py.test --pylint
        
        would be the most simple usage and would run pylint for all error messages.
        
        .. code-block:: shell
        
           py.test --pylint --pylint-rcfile=/my/pyrc --pylint-error-types=EF
        
        This would use the pylintrc file at /my/pyrc and only error on pylint
        Errors and Failures.
        
        You can restrict your test run to only perform pylint checks and not any other
        tests by typing:
        
        .. code-block:: shell
        
            py.test --pylint -m pylint
        
        Acknowledgements
        ================
        
        This code is heavily based on 
        `pytest-flakes <https://github.com/fschulze/pytest-flakes>`_
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4