|
19 | 19 | from scanpy._compat import CSRBase |
20 | 20 | from testing.scanpy._helpers import _check_check_values_warnings |
21 | 21 | from testing.scanpy._helpers.data import pbmc3k, pbmc68k_reduced |
22 | | -from testing.scanpy._pytest.marks import needs, skip_numba_0_63 |
| 22 | +from testing.scanpy._pytest.marks import needs |
23 | 23 | from testing.scanpy._pytest.params import ARRAY_TYPES |
24 | 24 |
|
25 | 25 | if TYPE_CHECKING: |
@@ -166,7 +166,6 @@ def _check_pearson_hvg_columns(output_df: pd.DataFrame, n_top_genes: int): |
166 | 166 | assert np.nanmax(output_df["highly_variable_rank"].to_numpy()) <= n_top_genes - 1 |
167 | 167 |
|
168 | 168 |
|
169 | | -@skip_numba_0_63 |
170 | 169 | def test_pearson_residuals_inputchecks( |
171 | 170 | pbmc3k_parametrized_small: Callable[[], AnnData], |
172 | 171 | ) -> None: |
@@ -203,7 +202,6 @@ def test_pearson_residuals_inputchecks( |
203 | 202 | ) |
204 | 203 |
|
205 | 204 |
|
206 | | -@skip_numba_0_63 |
207 | 205 | @pytest.mark.parametrize("subset", [True, False], ids=["subset", "full"]) |
208 | 206 | @pytest.mark.parametrize( |
209 | 207 | "clip", [None, np.inf, 30], ids=["noclip", "infclip", "30clip"] |
@@ -297,7 +295,6 @@ def test_pearson_residuals_general( |
297 | 295 | _check_pearson_hvg_columns(output_df, n_top_genes) |
298 | 296 |
|
299 | 297 |
|
300 | | -@skip_numba_0_63 |
301 | 298 | @pytest.mark.parametrize("subset", [True, False], ids=["subset", "full"]) |
302 | 299 | @pytest.mark.parametrize("n_top_genes", [100, 200], ids=["100n", "200n"]) |
303 | 300 | def test_pearson_residuals_batch( |
|
0 commit comments