diff --git a/conda-recipe/meta.yaml b/conda-recipe/meta.yaml index f773c76..a4f4615 100644 --- a/conda-recipe/meta.yaml +++ b/conda-recipe/meta.yaml @@ -36,8 +36,14 @@ requirements: - matplotlib test: + requires: + - numpy + - pytest + - scipy imports: - siffroi + commands: + - pytest about: home: "https://github.com/maimonlab/siffroi" diff --git a/tests/lest_fourcorr_integration.py b/tests/lest_fourcorr_integration.py deleted file mode 100644 index 3e74dcb..0000000 --- a/tests/lest_fourcorr_integration.py +++ /dev/null @@ -1,18 +0,0 @@ -from typing import Any -import pytest -import numpy as np - -@pytest.fixture(scope="function") -def download_test_data(tmp_path_factory)->np.ndarray[Any, np.dtype[np.float_]]: - """ TODO: download a test data set for FourCorr online, rather than from the server """ - - filedir = tmp_path_factory.mktemp("data") - raise NotImplementedError() - -pytest.fixture(scope="function") -def test_fourcorr_init(download_test_data): - import fourcorr - from fourcorr import FourCorrAnalysis - - return FourCorrAnalysis(download_test_data) -