From c89bd06dd9a1298a8221a8816c03d57771a85872 Mon Sep 17 00:00:00 2001 From: Elliott Sales de Andrade Date: Sat, 31 Mar 2018 20:08:43 -0400 Subject: [PATCH] Skip flaky slowness test. --- python-matplotlib.spec | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/python-matplotlib.spec b/python-matplotlib.spec index 8693246..2d32c8a 100644 --- a/python-matplotlib.spec +++ b/python-matplotlib.spec @@ -443,19 +443,23 @@ echo "backend : %{backend}" > matplotlibrc # Skips: # * test_polycollection_close: imports mpl_toolkits which is broken as noted # above. +# * test_invisible_Line_rendering: Checks for "slowness" that often fails on a +# heavily-loaded builder. MPLCONFIGDIR=$PWD \ MATPLOTLIBDATA=%{buildroot}%{_datadir}/matplotlib/mpl-data \ PYTHONPATH=%{buildroot}%{python2_sitearch} \ xvfb-run -a -s "-screen 0 640x480x24" \ %{__python2} -m pytest --pyargs matplotlib -ra -n $(getconf _NPROCESSORS_ONLN) \ - -m 'not network' -k 'not test_polycollection_close' + -m 'not network' \ + -k 'not test_polycollection_close and not test_invisible_Line_rendering' MPLCONFIGDIR=$PWD \ MATPLOTLIBDATA=%{buildroot}%{_datadir}/matplotlib/mpl-data \ PYTHONPATH=%{buildroot}%{python3_sitearch} \ xvfb-run -a -s "-screen 0 640x480x24" \ %{__python3} tests.py -ra -n $(getconf _NPROCESSORS_ONLN) \ - -m 'not network' + -m 'not network' \ + -k 'not test_invisible_Line_rendering' %endif # run_tests %files -n python-matplotlib-data