This is an official Codeception adapter for Allure Framework.
The main purpose of this adapter is to accumulate information about your tests and write it out to a set of XML files: one for each test class. This adapter only generates XML files containing information about tests. See wiki section on how to generate report.
Example project is located at: https://github.com/allure-examples/allure-codeception-example
In order to use this adapter you need to add a new dependency to your composer.json file:
{
"require": {
"php": ">=5.4.0",
"allure-framework/allure-codeception": "~1.1.0"
}
}
To enable this adapter in Codeception tests simply enabled it in extensions section of codeception.yml:
extensions:
enabled: [Yandex\Allure\Adapter\AllureAdapter]See respective PHPUnit section.