Skip to content

Commit

Permalink
Adds test of resample global package backend.
Browse files Browse the repository at this point in the history
  • Loading branch information
fakufaku committed Nov 6, 2024
1 parent 85e4b0a commit 2e08b3b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pyroomacoustics/tests/test_resample.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
@pytest.mark.parametrize(
"fs_in, fs_out, backend",
[
(240, 160, None),
(240, 160, "soxr"),
(240, 160, "samplerate"),
(240, 160, "scipy"),
Expand All @@ -33,6 +34,7 @@ def test_downsample(fs_in, fs_out, backend):
@pytest.mark.parametrize(
"fs_in, fs_out, backend",
[
(160, 240, None),
(160, 240, "soxr"),
(160, 240, "samplerate"),
(160, 240, "scipy"),
Expand Down

0 comments on commit 2e08b3b

Please sign in to comment.