This file is indexed.

/usr/lib/python3/dist-packages/aplpy/conftest.py is in python3-aplpy 1.1.1-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
# this contains imports plugins that configure py.test for astropy tests.
# by importing them here in conftest.py they are discoverable by py.test
# no matter how it is invoked within the source tree.

from astropy.tests.pytest_plugins import *
from astropy.tests.pytest_plugins import pytest_addoption as astropy_pytest_addoption

# This is to figure out APLpy version, rather than using Astropy's
from . import version

import matplotlib
matplotlib.use('Agg')

try:
    packagename = os.path.basename(os.path.dirname(__file__))
    TESTED_VERSIONS[packagename] = version.version
except NameError:
    pass

# Uncomment the following line to treat all DeprecationWarnings as
# exceptions
enable_deprecations_as_exceptions()

from astropy.tests.helper import pytest


def pytest_addoption(parser):
    parser.addoption('--generate-images-path',
                     help="directory to generate reference images in",
                     action='store')
    return astropy_pytest_addoption(parser)


@pytest.fixture
def generate(request):
    return request.config.getoption("--generate-images-path")

# Add astropy to test header information and remove unused packages.

try:
    PYTEST_HEADER_MODULES['Astropy'] = 'astropy'
    PYTEST_HEADER_MODULES['pyregion'] = 'pyregion'
    PYTEST_HEADER_MODULES['PyAVM'] = 'PyAVM'
    PYTEST_HEADER_MODULES['montage-wrapper'] = 'montage-wrapper'
    del PYTEST_HEADER_MODULES['h5py']
except NameError:
    pass