我遇到了HTML格式化程序和behat中的output_path問題。我使用CMD:output_path不能在behat 2.4.0下工作?
behat --format=html --out=output.html --config /www/config/behat.yml test.feature
簡化配置(behat.yml)看起來是這樣的:
default:
formatter:
name: html
parameters:
output_path: /www/features/output
的問題是,不管是什麼output_path我設置的輸出。 html始終放置在同一目錄內,其中是behat.yml(/ www/config)。任何人都可以看到我做錯了什麼? 非常感謝您的幫助!
UPDATE貝哈特v 2.4.3使用輸出目錄相同的當前目錄(不一樣的配置),但仍處於behat.yml output_path
參數似乎不工作。
是的,我想我錯誤地理解了config中的'output_path',因爲它需要文件的完整路徑,而不僅僅是dir路徑。如果我可以使用'--out'的參考cmdline參數,但不知道如何... ...任何想法?當調用'behat -f = html --out = test.html'時,類似於'output_path:/ www/features/output /%arg%'' – lp1051