Trees | Indices | Help |
|
---|
|
object --+ | Test
A performance test. name
and product
must
uniquely specify a test. product
is required to match an
existing product name in the database. New tests require descriptions
when uploaded. The descriptions of existing tests are not changed by
result upload.
Invididual results are added with addResult(). All results are uploaded to the database when report() is called.
Typical pattern:
test = performance.Test("distribution_size", "shared components", ("Determine the size of the SCHRODINGER distribution and " "report it to the performance database.")) # Result with a metric name and value test.addResult('file count', 200000) # Result with a metric name, value, and units test.addResult('size', 20000, 'MB') test.report()
|
|||
|
|||
|
|||
|
|||
Inherited from |
|
|||
Inherited from |
|
x.__init__(...) initializes x; see help(type(x)) for signature
|
Add a result to the current test. Results are not uploaded until report() is called.
|
Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Thu Aug 6 04:50:49 2015 | http://epydoc.sourceforge.net |