Commit ee8ac747 authored by Roman Yurchak's avatar Roman Yurchak

Fix matplotlib and mark test_rlcompleter as crashing

parent ce15a291
...@@ -368,7 +368,7 @@ test_repl subprocess ...@@ -368,7 +368,7 @@ test_repl subprocess
test_reprlib test_reprlib
test_resource test_resource
test_richcmp test_richcmp
test_rlcompleter test_rlcompleter crash
test_robotparser test_robotparser
test_runpy crash test_runpy crash
test_sax test_sax
......
...@@ -3,7 +3,6 @@ def test_matplotlib(selenium): ...@@ -3,7 +3,6 @@ def test_matplotlib(selenium):
selenium.run("from matplotlib import pyplot as plt") selenium.run("from matplotlib import pyplot as plt")
selenium.run("plt.figure()") selenium.run("plt.figure()")
selenium.run("x = plt.plot([1,2,3])") selenium.run("x = plt.plot([1,2,3])")
selenium.run("plt.destroy_all()")
def test_svg(selenium): def test_svg(selenium):
...@@ -17,4 +16,3 @@ def test_svg(selenium): ...@@ -17,4 +16,3 @@ def test_svg(selenium):
content = selenium.run("fd.getvalue().decode('utf8')") content = selenium.run("fd.getvalue().decode('utf8')")
assert len(content) == 15752 assert len(content) == 15752
assert content.startswith("<?xml") assert content.startswith("<?xml")
selenium.run("plt.destroy_all()")
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment