Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed May 29, 2024
1 parent 556c4b6 commit 249a55b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/test_fetch_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ def test_fetch_dataset():
alt_exp_ass = alt.get_assays()
assert all(isinstance(a, (np.ndarray)) for _, a in alt_exp_ass.items())


@pytest.skip("takes too long")
def test_fetch_dataset_realizes_reduced_dimensions():
sce = fetch_dataset("aztekin-tail-2019", "2023-12-14", realize_reduced_dims=False)
Expand All @@ -44,6 +45,7 @@ def test_fetch_dataset_realizes_reduced_dimensions():
red_dim = sce.get_reduced_dims()
assert all(isinstance(a, np.ndarray) for _, a in red_dim.items())


def test_fetch_metadata():
meta = fetch_metadata("zeisel-brain-2015", "2023-12-14")
assert "Brain structure" in meta["title"]
Expand Down
1 change: 1 addition & 0 deletions tests/test_polish_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,7 @@ def test_polish_dataset_forbids_highly_nested_altexps():
y.get_alternative_experiment_names() == sce0.get_alternative_experiment_names()
)


@pytest.skip("takes too long")
def test_polish_existing_dataset():
sce = fetch_dataset("zeisel-brain-2015", "2023-12-14")
Expand Down

0 comments on commit 249a55b

Please sign in to comment.