本文整理汇总了Python中loader.Loader.get_format方法的典型用法代码示例。如果您正苦于以下问题:Python Loader.get_format方法的具体用法?Python Loader.get_format怎么用?Python Loader.get_format使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类loader.Loader
的用法示例。
在下文中一共展示了Loader.get_format方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: Loader
# 需要导入模块: from loader import Loader [as 别名]
# 或者: from loader.Loader import get_format [as 别名]
parser.add_argument("-m", "--measure",
help="run the benchmark",
action="store_true")
parser.add_argument("-s", "--skip-tests",
help="skip JUnit tests",
action="store_true")
args = parser.parse_args()
# set working directory to this file's path
util.set_working_directory()
loader = Loader()
config = loader.load()
formats = set()
for tool in config.tools:
formats.add(loader.get_format(tool))
java_xmx = "2g"
# if there are no args, execute a full sequence
# with the test and the visualization/reporting
no_args = all(val is False for val in vars(args).values())
if no_args:
args.build = True
args.generate = True
args.measure = True
if args.build:
build(formats, config.tools, args.skip_tests)
if args.generate:
generate(formats, config.scenarios, config.sizes)
if args.measure: