Ejemplo n.º 1
0
    def test_plot_temperature(self):
        """Test that plot_utils.plot_temperature() doesn't bomb"""

        run1 = trappy.Run(name="first")
        run2 = trappy.Run(name="second")
        runs = [run1, run2]

        plot_utils.plot_temperature(runs, ylim="default")
        matplotlib.pyplot.close('all')
Ejemplo n.º 2
0
    def test_plot_temperature(self):
        """Test that plot_utils.plot_temperature() doesn't bomb"""

        trace1 = trappy.FTrace(name="first")
        trace2 = trappy.FTrace(name="second")
        traces = [trace1, trace2]

        plot_utils.plot_temperature(traces, ylim="default")
        matplotlib.pyplot.close('all')
Ejemplo n.º 3
0
    def test_plot_temperature(self):
        """Test that plot_utils.plot_temperature() doesn't bomb"""

        run1 = trappy.Run(name="first")
        run2 = trappy.Run(name="second")
        runs = [run1, run2]

        plot_utils.plot_temperature(runs, ylim="default")
        matplotlib.pyplot.close('all')
Ejemplo n.º 4
0
    def test_plot_temperature(self):
        """Test that plot_utils.plot_temperature() doesn't bomb"""

        trace1 = trappy.FTrace(name="first")
        trace2 = trappy.FTrace(name="second")
        traces = [trace1, trace2]

        plot_utils.plot_temperature(traces, ylim="default")
        matplotlib.pyplot.close('all')