Skip to content

Commit

Permalink
Move import arcade also from integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dangillet committed Jul 20, 2018
1 parent 9d96d61 commit 704f59b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/test_sound_integration.py
Expand Up @@ -2,14 +2,14 @@
from pathlib import Path
import pyglet

import arcade
if not pyglet.media.have_ffmpeg():
pytest.skip("No FFmpeg binaries found.", allow_module_level=True)


@pytest.mark.not_ci
@pytest.mark.parametrize('sound_format', ('wav', 'mp3', 'ogg'))
def test_play_sound(sound_format):
import arcade
this_dir = Path(__file__).parent
resources = this_dir / "../resources"
sound_file = "laser1." + sound_format
Expand Down

0 comments on commit 704f59b

Please sign in to comment.