Skip to content

Commit

Permalink
Fix crashing when pandas not found
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
pllim committed Jul 14, 2022
1 parent e4b1018 commit b99e934
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
PYTEST_HEADER_MODULES['Astropy'] = 'astropy'
PYTEST_HEADER_MODULES['Ginga'] = 'ginga'
PYTEST_HEADER_MODULES['stginga'] = 'stginga'
PYTEST_HEADER_MODULES.pop('Pandas')
PYTEST_HEADER_MODULES.pop('h5py')
PYTEST_HEADER_MODULES.pop('Pandas', None)
PYTEST_HEADER_MODULES.pop('h5py', 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
Expand Down

0 comments on commit b99e934

Please sign in to comment.