Allure_behave不起作用:AllureFormatter未知

时间:2018-06-17 12:30:41

标签: allure python-behave

我已经在Python中编写了一些测试用例,我想使用倾向来运行和生成报告。我已经安装了allure_behave,但是当我在功能文件目录中运行命令时

behave -f allure_behave.formatter:AllureFormatter -o result 

它不起作用,错误是:

  

behave: error: format=allure_behave.formatter:AllureFormatter is unknown.

谁知道为什么?我该如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

我在升级Pip警告时也遇到了同样的问题。
我将点数从版本10升级到了19

pip install --upgrade pip

然后我安装了诱人行为

pip install allure-behave

然后我在第

行下执行了
behave -f allure_behave.formatter:AllureFormatter -o %allure_result_folder% ./features

我现在没有任何错误。