-
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #123 from pllim/tst-header
TST: Fix test header in tox, stricter PEP 8
- Loading branch information
Showing
4 changed files
with
38 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters