Skip to content

Commit

Permalink
Don't skip audioclip tests in Windows (Zulko#1426)
Browse files Browse the repository at this point in the history
  • Loading branch information
mondeja authored and tburrows13 committed Jan 19, 2021
1 parent 1fabf02 commit 6a76ff7
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions tests/test_AudioClips.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,7 @@

from tests.test_helper import TMP_DIR

skip_if_windows = pytest.mark.skipif(
sys.platform.startswith("win"),
reason="Temporarily skipping on windows because otherwise test suite fails with Invalid Handle Error",
)


@skip_if_windows
def test_audio_coreader():
sound = AudioFileClip("media/crunching.mp3")
sound = sound.subclip(1, 4)
Expand Down Expand Up @@ -85,7 +79,6 @@ def test_audioclip_concat():
concat_clip.write_audiofile(os.path.join(TMP_DIR, "concat_audioclip.mp3"))


@skip_if_windows
def test_audioclip_with_file_concat():
make_frame_440 = lambda t: [sin(440 * 2 * pi * t)]
clip1 = AudioClip(make_frame_440, duration=1, fps=44100)
Expand Down

0 comments on commit 6a76ff7

Please sign in to comment.