Skip to content

Commit

Permalink
Merge pull request #123 from pllim/tst-header
Browse files Browse the repository at this point in the history
TST: Fix test header in tox, stricter PEP 8
  • Loading branch information
pllim authored Feb 18, 2021
2 parents 52edd86 + 17da462 commit fc9a27d
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 11 deletions.
4 changes: 2 additions & 2 deletions astrowidgets/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Packages may add whatever they like to this file, but
# should keep this content at the top.
# ----------------------------------------------------------------------------
from ._astropy_init import *
from ._astropy_init import * # noqa
# ----------------------------------------------------------------------------

from .core import *
from .core import * # noqa
13 changes: 5 additions & 8 deletions astrowidgets/conftest.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# This file is used to configure the behavior of pytest when using the Astropy
# test infrastructure.
import os

try:
from pytest_astropy_header.display import (PYTEST_HEADER_MODULES,
TESTED_VERSIONS)
Expand All @@ -11,7 +9,7 @@

# Uncomment the following line to treat all DeprecationWarnings as
# exceptions.
# from astropy.tests.helper import enable_deprecations_as_exceptions # noqa
# from astropy.tests.helper import enable_deprecations_as_exceptions
# enable_deprecations_as_exceptions()

# Uncomment and customize the following lines to add/remove entries from
Expand All @@ -20,15 +18,14 @@
# the package uses other astropy affiliated packages.
PYTEST_HEADER_MODULES['Astropy'] = 'astropy'
PYTEST_HEADER_MODULES['Ginga'] = 'ginga'
PYTEST_HEADER_MODULES.pop('h5py')
PYTEST_HEADER_MODULES.pop('Pandas')
PYTEST_HEADER_MODULES.pop('h5py', None)
PYTEST_HEADER_MODULES.pop('Pandas', None)

# Uncomment the following lines to display the version number of the
# package rather than the version number of Astropy in the top line when
# running the tests.
try:
from .version import version
from astrowidgets import __version__ as version
except ImportError:
version = 'unknown'
packagename = os.path.basename(os.path.dirname(__file__))
TESTED_VERSIONS[packagename] = version
TESTED_VERSIONS['astrowidgets'] = version
31 changes: 31 additions & 0 deletions conftest.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# This file is used to configure the behavior of pytest when using the Astropy
# test infrastructure.
try:
from pytest_astropy_header.display import (PYTEST_HEADER_MODULES,
TESTED_VERSIONS)
except ImportError:
PYTEST_HEADER_MODULES = {}
TESTED_VERSIONS = {}

# Uncomment the following line to treat all DeprecationWarnings as
# exceptions.
# from astropy.tests.helper import enable_deprecations_as_exceptions
# enable_deprecations_as_exceptions()

# Uncomment and customize the following lines to add/remove entries from
# the list of packages for which version numbers are displayed when running
# the tests. Making it pass for KeyError is essential in some cases when
# the package uses other astropy affiliated packages.
PYTEST_HEADER_MODULES['Astropy'] = 'astropy'
PYTEST_HEADER_MODULES['Ginga'] = 'ginga'
PYTEST_HEADER_MODULES.pop('h5py', None)
PYTEST_HEADER_MODULES.pop('Pandas', None)

# Uncomment the following lines to display the version number of the
# package rather than the version number of Astropy in the top line when
# running the tests.
try:
from astrowidgets import __version__ as version
except ImportError:
version = 'unknown'
TESTED_VERSIONS['astrowidgets'] = version
1 change: 0 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ addopts = -p no:warnings
# E501: line too long
# W503: line break before binary operator
ignore = E501,W503
exclude = setup_package.py,conftest.py,__init__.py

[metadata]
name = astrowidgets
Expand Down

0 comments on commit fc9a27d

Please sign in to comment.