forked from spacetelescope/gwcs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
conftest.py
33 lines (26 loc) · 1001 Bytes
/
conftest.py
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
import os
# 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.helper import enable_deprecations_as_exceptions
from astropy.tests.plugins.display import PYTEST_HEADER_MODULES, TESTED_VERSIONS
# Uncomment the following line to treat all DeprecationWarnings as
# exceptions
#enable_deprecations_as_exceptions()
try:
PYTEST_HEADER_MODULES['Astropy'] = 'astropy'
PYTEST_HEADER_MODULES['asdf'] = 'asdf'
del PYTEST_HEADER_MODULES['h5py']
except (NameError, KeyError):
pass
# This is to figure out the affiliated package version, rather than
# using Astropy's
from . import version
try:
packagename = os.path.basename(os.path.dirname(__file__))
TESTED_VERSIONS[packagename] = version.version
except NameError: # Needed to support Astropy <= 1.0.0
pass
pytest_plugins = [
'asdf.tests.schema_tester'
]