Pytest를 사용하였을 때의 확인할 수 있는 간단한 html보고서를 사용합니다.
pytest-html
이라는 매우 단순한 라이브러리가 있습니다.
pip install pytest-html
을 이용하여 설치해줍니다.
pytest를 실행할 때, 옵션을 넣어 실행합니다.
pytest --html="results.html"
경로를 별도로 지정해서 실행할 수도 있습니다.
XML형식으로 리포트하는 것도 가능합니다.
pytest --junitxml="results.xml"
이때, junitxml
옵션을 이용하여 생성하면, jenkins의 post-build 동작에서
publish JUnit test result report
옵션도 이용할 수 있습니다.
안녕하세요.
좋은 글 잘 읽었습니다. Pytest-xdist로 pytest-bdd 스텝 파일을 실행할 때 pytest-html에서 실행 파일 모두의 결과를 취합할 수 있는 지 궁금합니다.