/usr/lib/python3/dist-packages/pyregion/conftest.py is in python3-pyregion 1.2-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 20 21 22 23 24 25 26 27 28 29 30 31 | # 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 *
## Uncomment the following line to treat all DeprecationWarnings as
## exceptions
# Deprecations are coming from upstream kapteyn, switching it off for now
# enable_deprecations_as_exceptions()
# Add astropy to test header information and remove unused packages.
# Pytest header customisation was introduced in astropy 1.0.
import os
try:
PYTEST_HEADER_MODULES['Astropy'] = 'astropy'
del PYTEST_HEADER_MODULES['h5py']
del PYTEST_HEADER_MODULES['Scipy']
except NameError:
pass
# This is to figure out the affiliated package version, rather than
# using Astropy's
try:
from .version import version
except ImportError:
version = 'dev'
packagename = os.path.basename(os.path.dirname(__file__))
TESTED_VERSIONS[packagename] = version
|