Skip to content
Snippets Groups Projects
Commit 4a473f10 authored by Simon Heybrock's avatar Simon Heybrock Committed by GitHub
Browse files

Merge pull request #20045 from mantidproject/performance_plot_updates

Interactive Plots in Performance Test Reports
parents 32f4852b 12d86e1c
No related merge requests found
This diff is collapsed.
This diff is collapsed.
......@@ -6,7 +6,8 @@ import os
import subprocess
import sqlite3
#====================================================================================
# ====================================================================================
def getSourceDir():
"""Returns the location of the source code."""
import os
......@@ -17,7 +18,6 @@ def getSourceDir():
return os.path.dirname(script)
def join_databases(dbfiles):
"""Create a single DB joining several ones
Returns: filename created
......@@ -40,15 +40,15 @@ def join_databases(dbfiles):
return outfile
#====================================================================================
# ====================================================================================
if __name__ == "__main__":
# Parse the command line
parser = argparse.ArgumentParser(description='Generates a HTML report using the Mantid System Tests results database')
parser = argparse.ArgumentParser(
description='Generates a HTML report using the Mantid System Tests results database')
parser.add_argument('--path', dest='path',
default="./Report",
help='Path to the ouput HTML. Default "./Report".' )
help='Path to the ouput HTML. Default "./Report".')
parser.add_argument('--x_field', dest='x_field',
default="revision",
......@@ -58,11 +58,15 @@ if __name__ == "__main__":
default=["./MantidSystemTests.db"],
help='Required: Path to the SQL database file(s).')
args = parser.parse_args()
# Import the manager definition
import analysis
try:
import analysis
except:
# plotly not available, use matplotlib fallback
import analysis_mpl as analysis
import sqlresults
if len(args.dbfile) > 1:
......@@ -72,7 +76,6 @@ if __name__ == "__main__":
# Only one file - use it
dbfile = args.dbfile[0]
if not os.path.exists(dbfile):
print "Error! Could not find", dbfile
sys.exit(1)
......@@ -81,4 +84,4 @@ if __name__ == "__main__":
sqlresults.set_database_filename(dbfile)
# Make the report
analysis.generate_html_report(args.path, 100, args.x_field)
\ No newline at end of file
analysis.generate_html_report(args.path, 100, args.x_field)
numpy
matplotlib
plotly
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment