我有一些Cucumber测试,可以通过
从控制台运行rake cucumber
是否有命令行选项将测试结果存储到文本文件中?
答案 0 :(得分:5)
无论
直接运行cucumber
并使用-o
。来自cucumber --help
:
-o, --out [FILE|DIR]
Write output to a file/directory instead of STDOUT. This option
applies to the previously specified --format, or the
default format if no format is specified. Check the specific
formatter's docs to see whether to pass a file or a dir.
使用rake
运行CUCUMBER_OPTS="-o whateverfile"
,即
CUCUMBER_OPTS="-o whateverfile" rake cucumber # assuming you're using a Bourne family shell
或
rake CUCUMBER_OPTS="-o whateverfile" cucumber
编辑lib / tasks / cucumber.rake并添加
t.cucumber_ops = '-o whateverfile'
一个或多个Cucumber::Rake::Task
s
或者只是自己重定向cucumber
命令的输出:
cucumber > whateverfile
-o
与重定向略有不同:它始终将“progress”输出打印到屏幕上。如果未指定格式,则会在文件中放置默认的“漂亮”格式。如果您这样做(例如cucumber -f html -o whateverfile
),则会将您指定的格式放在文件中。
如果重要,我正在使用Ruby Cucumber 2.3.2。