Skip to content

Commit

Permalink
remove tests for Python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
bendichter committed May 13, 2024
1 parent 40e9869 commit a41d30c
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions tests/test_inscopiximagingextractor.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
import sys

import numpy as np
import pytest
from numpy import dtype
from numpy.testing import assert_array_equal

Expand All @@ -10,7 +7,6 @@
from tests.setup_paths import OPHYS_DATA_PATH


@pytest.mark.skipif(sys.version_info <= (3, 8), reason="Requires Python 3.9 or higher")
def test_inscopiximagingextractor_movie_128x128x100_part1():
file_path = OPHYS_DATA_PATH / "imaging_datasets" / "inscopix" / "movie_128x128x100_part1.isxd"
extractor = InscopixImagingExtractor(file_path=file_path)
Expand All @@ -25,7 +21,6 @@ def test_inscopiximagingextractor_movie_128x128x100_part1():
assert extractor.get_frames(frame_idxs=[0], channel=0).dtype == extractor.get_dtype()


@pytest.mark.skipif(sys.version_info <= (3, 8), reason="Requires Python 3.9 or higher")
def test_inscopiximagingextractor_movie_longer_than_3_min():
file_path = OPHYS_DATA_PATH / "imaging_datasets" / "inscopix" / "movie_longer_than_3_min.isxd"
extractor = InscopixImagingExtractor(file_path=file_path)
Expand Down

0 comments on commit a41d30c

Please sign in to comment.