py test allure adapter を使用しており、alure レポートに必要な入力データを生成しようとしています。しかし、XML を生成できません。py.test sample.py を使用して py ファイルを実行すると、pycache dir が作成されました。次に、「allure generate -v 1.3.9 C:\allurereports」を実行しました (これは、sample.py があったディレクトリです)。それは魅力的な HTML レポートを作成しましたが、テスト ケースは 0 ではありませんでした。詳細はありませんでした。
sample.py(例にあるものと同じです)
import allure
@allure.feature('Feature1')
@allure.story('Story1')
def test_minor():
assert False
@allure.feature('Feature2')
@allure.story('Story2', 'Story3')
@allure.story('Story4')
class TestBar:
# will have 'Feature2 and Story2 and Story3 and Story4'
def test_bar(self):
pass
使用される py.test コマンドは次のとおりです: py.test sample.py --allure_features=feature1,feature2
ファイルからアリュール レポートを生成する方法を教えてくれる人はいますか? 実行するコマンドは何ですか?