Skip to content

Commit 3c9062d

Browse files
committed
removed extra tests
1 parent 48a4331 commit 3c9062d

1 file changed

Lines changed: 0 additions & 9 deletions

File tree

tests/pl/test_render_points.py

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
import matplotlib.pyplot as plt
66
import numpy as np
77
import pandas as pd
8-
import pytest
98
import scanpy as sc
109
from anndata import AnnData
1110
from spatialdata import SpatialData, deepcopy
@@ -107,14 +106,6 @@ def test_plot_points_categorical_color(self, sdata_blobs: SpatialData):
107106
sdata_blobs["other_table"].obs["category"] = sdata_blobs["other_table"].obs["category"].astype("category")
108107
sdata_blobs.pl.render_points("blobs_points", color="category").pl.show()
109108

110-
@pytest.mark.parametrize("method", ["matplotlib", "datashader"])
111-
def test_plot_points_categorical_color_column(self, sdata_blobs: SpatialData, method: str):
112-
sdata_blobs.pl.render_points("blobs_points", color="genes", method=method).pl.show()
113-
114-
@pytest.mark.parametrize("method", ["matplotlib", "datashader"])
115-
def test_plot_points_continuous_color_column(self, sdata_blobs: SpatialData, method: str):
116-
sdata_blobs.pl.render_points("blobs_points", color="instance_id", method=method).pl.show()
117-
118109
def test_plot_datashader_continuous_color(self, sdata_blobs: SpatialData):
119110
sdata_blobs.pl.render_points(
120111
element="blobs_points", size=40, color="instance_id", alpha=0.6, method="datashader"

0 commit comments

Comments
 (0)