14
0
forked from pool/python-pygame
Files
python-pygame/python-pygame-test-no-mp3.patch
Tomáš Chvátal 26cc9de4ef Accepting request 704173 from home:pgajdos
- version update to 1.9.6
  * mixer thread deadlock issue when controlling it from different
    threads.
  * pygame.version.vernum now has major, minor, and patch attributes.
- added patches
  Do not test mp3 format.
  + python-pygame-test-no-mp3.patch

OBS-URL: https://build.opensuse.org/request/show/704173
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pygame?expand=0&rev=23
2019-05-20 09:10:25 +00:00

14 lines
590 B
Diff

Index: pygame-1.9.6/test/mixer_music_test.py
===================================================================
--- pygame-1.9.6.orig/test/mixer_music_test.py 2019-04-25 08:14:48.000000000 +0200
+++ pygame-1.9.6/test/mixer_music_test.py 2019-05-20 10:36:59.969907416 +0200
@@ -33,7 +33,7 @@ class MixerMusicModuleTest(unittest.Test
# Load a music file for playback
data_fname = example_path('data')
- formats = ['mp3', 'ogg', 'wav']
+ formats = ['ogg', 'wav']
for f in formats:
path = os.path.join(data_fname, 'house_lo.%s' % f)