aboutsummaryrefslogtreecommitdiff
path: root/tests/test_plot_utils.py
diff options
context:
space:
mode:
authorJavi Merino <javi.merino@arm.com>2014-06-26 15:24:34 +0100
committerJavi Merino <javi.merino@arm.com>2015-08-12 14:52:40 +0100
commit8e8e3217c981954606a4fec9fcd847a1d7e5209a (patch)
treef5a421a92d52e9b485afb641731df1deda259740 /tests/test_plot_utils.py
parent8f7c2023cad26bc20690c65914b25d7a3c10cd4f (diff)
downloadtrappy-8e8e3217c981954606a4fec9fcd847a1d7e5209a.tar.gz
tests: close all the figures created during plot_utils() testing
Diffstat (limited to 'tests/test_plot_utils.py')
-rw-r--r--tests/test_plot_utils.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/test_plot_utils.py b/tests/test_plot_utils.py
index dc60e14..4013c3d 100644
--- a/tests/test_plot_utils.py
+++ b/tests/test_plot_utils.py
@@ -1,7 +1,8 @@
#!/usr/bin/python
-import pandas as pd
import unittest
+import matplotlib
+import pandas as pd
from test_thermal import TestThermalBase
import cr2
@@ -93,6 +94,7 @@ class TestPlotUtilsNeedTrace(TestThermalBase):
map_label = {"0000000f": "A7", "000000f0": "A15"}
plot_utils.plot_allfreqs(inp, outp, map_label)
+ matplotlib.pyplot.close('all')
def test_plot_temperature(self):
"""Test that plot_utils.plot_temperature() doesn't bomb"""
@@ -101,6 +103,7 @@ class TestPlotUtilsNeedTrace(TestThermalBase):
gov = cr2.ThermalGovernor()
plot_utils.plot_temperature(thrm, gov, title="Foo")
+ matplotlib.pyplot.close('all')
def test_plot_power_hists(self):
"""Test that plot_power_hists() doesn't bomb"""
@@ -110,6 +113,7 @@ class TestPlotUtilsNeedTrace(TestThermalBase):
map_label = {"0000000f": "A7", "000000f0": "A15"}
plot_utils.plot_power_hists(inp, outp, map_label)
+ matplotlib.pyplot.close('all')
def test_plot_temperature_hist(self):
"""Test that plot_temperature_hist() doesn't bomb"""
@@ -117,3 +121,4 @@ class TestPlotUtilsNeedTrace(TestThermalBase):
therm = cr2.Thermal()
plot_utils.plot_temperature_hist(therm, "Foo")
+ matplotlib.pyplot.close('all')