Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Don't skip audioclip tests in Windows #1426

Merged
merged 1 commit into from
Jan 13, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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