Skip to content

Commit

Permalink
Update test_traj.py
Browse files Browse the repository at this point in the history
  • Loading branch information
zktuong committed Jan 8, 2023
1 parent 04e631b commit e04e9a3
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions tests/test_traj.py
Expand Up @@ -14,6 +14,10 @@
FNAME = "ftp://ftp.sanger.ac.uk/pub/users/kp9/" + FILE


@pytest.mark.skipif(
sys.platform == "darwin",
reason="macos CI stalls.",
)
@pytest.mark.usefixtures("airr_reannotated", "dummy_adata")
def test_setup(airr_reannotated, dummy_adata):
vdj, adata = ddl.pp.check_contigs(airr_reannotated, dummy_adata)
Expand All @@ -22,7 +26,7 @@ def test_setup(airr_reannotated, dummy_adata):


@pytest.mark.skipif(
(sys.platform == "darwin") & (sys.version_info.minor < 9),
sys.platform == "darwin",
reason="macos CI stalls.",
)
@patch("matplotlib.pyplot.show")
Expand Down Expand Up @@ -73,7 +77,7 @@ def test_trajectory(mock_show):


@pytest.mark.skipif(
(sys.platform == "darwin") & (sys.version_info.minor < 9),
sys.platform == "darwin",
reason="macos CI stalls.",
)
def test_trajectory_setup():
Expand Down

0 comments on commit e04e9a3

Please sign in to comment.