mirror of
https://github.com/ARM-software/workload-automation.git
synced 2025-09-02 19:32:34 +01:00
Add version information to workloads
Add a __version__ parameter to __init__.py for all workloads. The version number has three components major.minor.patch. major: completely new interpretation of the test (incompatible with previous test) minor: breaks compatibility with previous test (outputted results, dependencies, etc) patch: code change with no impact on any dependencies
This commit is contained in:
@@ -20,6 +20,8 @@ import time
|
|||||||
|
|
||||||
from wlauto import AndroidUiAutoBenchmark, Parameter
|
from wlauto import AndroidUiAutoBenchmark, Parameter
|
||||||
|
|
||||||
|
__version__ = '0.1.0'
|
||||||
|
|
||||||
|
|
||||||
class Gmail(AndroidUiAutoBenchmark):
|
class Gmail(AndroidUiAutoBenchmark):
|
||||||
|
|
||||||
|
@@ -18,6 +18,8 @@ import re
|
|||||||
|
|
||||||
from wlauto import AndroidUiAutoBenchmark, Parameter
|
from wlauto import AndroidUiAutoBenchmark, Parameter
|
||||||
|
|
||||||
|
__version__ = '0.1.0'
|
||||||
|
|
||||||
|
|
||||||
class Googlephotos(AndroidUiAutoBenchmark):
|
class Googlephotos(AndroidUiAutoBenchmark):
|
||||||
|
|
||||||
|
@@ -20,6 +20,8 @@ import time
|
|||||||
|
|
||||||
from wlauto import AndroidUiAutoBenchmark, Parameter
|
from wlauto import AndroidUiAutoBenchmark, Parameter
|
||||||
|
|
||||||
|
__version__ = '0.1.0'
|
||||||
|
|
||||||
|
|
||||||
class Reader(AndroidUiAutoBenchmark):
|
class Reader(AndroidUiAutoBenchmark):
|
||||||
|
|
||||||
|
@@ -19,6 +19,7 @@ import time
|
|||||||
|
|
||||||
from wlauto import AndroidUiAutoBenchmark, Parameter
|
from wlauto import AndroidUiAutoBenchmark, Parameter
|
||||||
|
|
||||||
|
__version__ = '0.1.0'
|
||||||
|
|
||||||
SKYPE_ACTION_URIS = {
|
SKYPE_ACTION_URIS = {
|
||||||
'call': 'call',
|
'call': 'call',
|
||||||
|
Reference in New Issue
Block a user