From 179ede2d93e7e0ea810bf6ad8b7cd98609b51322 Mon Sep 17 00:00:00 2001 From: Thomas A Caswell Date: Thu, 19 Jul 2018 19:53:22 -0400 Subject: [PATCH] Revert "Skip wx interactive tests on OSX." --- lib/matplotlib/tests/test_backends_interactive.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/matplotlib/tests/test_backends_interactive.py b/lib/matplotlib/tests/test_backends_interactive.py index ccc2c31b3133..c22cdc2bc5ae 100644 --- a/lib/matplotlib/tests/test_backends_interactive.py +++ b/lib/matplotlib/tests/test_backends_interactive.py @@ -30,8 +30,6 @@ def _get_testable_interactive_backends(): reason = "No $DISPLAY" elif any(importlib.util.find_spec(dep) is None for dep in deps): reason = "Missing dependency" - elif "wx" in deps and sys.platform == "darwin": - reason = "wx backends known not to work on OSX" backends.append(pytest.mark.skip(reason=reason)(backend) if reason else backend) return backends