# Copyright 2015-2015 ARM Limited # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # from trappy.compare_runs import summary_plots, compare_runs from trappy.run import Run from trappy.plotter.LinePlot import LinePlot try: from trappy.plotter.ILinePlot import ILinePlot from trappy.plotter.EventPlot import EventPlot except ImportError: pass from trappy.dynamic import register_dynamic, register_class # Load all the modules to make sure all classes are registered with Run import os for fname in os.listdir(os.path.dirname(__file__)): import_name, extension = os.path.splitext(fname) if (extension == ".py") and (fname != "__init__.py"): __import__("trappy.{}".format(import_name)) del fname, import_name, extension