robotframework支持从yaml文件读取变量,对于比较多的参数,可以在yaml文件中定义好,在robot脚本中引用
1、定义yaml文件
文件内容如下,注意,变量和变量值之间要以4个字符分开
yaml_demo_name: tester traing_gpt_finetune: acc: 20.12 time: 2.35 loss: 11 compression_bert_zero_quant: acc: 80.12 time: 2.35
2、robot文件头中引入定义好的yaml文件
Variables ./DeepSpeed_var.yaml
3、使用变量
引用变量的时候,格式参考:
${yaml_demo_name} ${tring_gpt_finetune.acc}
获取到的变量值: