mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 04:46:43 +00:00
391ceda581
Fixes #293186
27 lines
919 B
Diff
27 lines
919 B
Diff
diff --git a/test/surface_test.py b/test/surface_test.py
|
|
index 5ce78b6e..8b8f7ed5 100644
|
|
--- a/test/surface_test.py
|
|
+++ b/test/surface_test.py
|
|
@@ -1091,6 +1091,10 @@ class GeneralSurfaceTests(unittest.TestCase):
|
|
finally:
|
|
pygame.display.quit()
|
|
|
|
+ @unittest.skipIf(
|
|
+ os.environ.get("SDL_VIDEODRIVER") == "dummy",
|
|
+ 'requires a non-"dummy" SDL_VIDEODRIVER',
|
|
+ )
|
|
def test_convert_init(self):
|
|
"""Ensure initialization exceptions are raised
|
|
for surf.convert()."""
|
|
@@ -1118,6 +1122,10 @@ class GeneralSurfaceTests(unittest.TestCase):
|
|
finally:
|
|
pygame.display.quit()
|
|
|
|
+ @unittest.skipIf(
|
|
+ os.environ.get("SDL_VIDEODRIVER") == "dummy",
|
|
+ 'requires a non-"dummy" SDL_VIDEODRIVER',
|
|
+ )
|
|
def test_convert_alpha_init(self):
|
|
"""Ensure initialization exceptions are raised
|
|
for surf.convert_alpha()."""
|