Skip to content

Commit

Permalink
Skip test if pandas not available
Browse files Browse the repository at this point in the history
  • Loading branch information
benmwebb committed Jun 26, 2024
1 parent f0e76b4 commit 5bf2f5d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions modules/spatiotemporal/test/test_make_graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ def test_prepare_protein_library(self):
"""
Test setting up a preparing a protein library for spatiotemporal library
"""
if pandas is None:
self.skipTest(
'pandas not available, will not test preparing protein library')
# set input dir
state_dict, expected_subcomplexes, exp_comp_map = setup_system()
with IMP.test.temporary_directory() as tmpdir:
Expand Down

0 comments on commit 5bf2f5d

Please sign in to comment.