Skip to content

Commit

Permalink
Skip crowsetta import test on python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
mbsantiago committed Feb 5, 2024
1 parent 97b2729 commit fa9ce63
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/test_io/test_crowsetta/test_import.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
import sys
import warnings

import pytest

warnings.filterwarnings("ignore", category=UserWarning, module="crowsetta")
from pathlib import Path

Expand All @@ -8,6 +11,9 @@
from soundevent import data, io


@pytest.mark.skipif(
sys.version_info < (3, 9), reason="requires python3.9 or higher"
)
def test_can_import_all_example_formats(
tmp_path: Path,
recording: data.Recording,
Expand Down

0 comments on commit fa9ce63

Please sign in to comment.