reportportal / codeception
Specific classes to integrate Codeception-based test framework with Report Portal (http://reportportal.io/).
Installs: 2 692
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 1
Forks: 5
Open Issues: 1
Requires
- codeception/base: *
- codeception/codeception: *
- reportportal/basic: 1.0.x-dev
This package is auto-updated.
Last update: 2019-05-07 07:41:31 UTC
README
Specific class to integrate Codeception-based test framework with Report Portal (http://reportportal.io/).
How to use.
Use as an example: https://github.com/Mikalai-Kabzar/Codeception-test-framework-for-Yandex
Steps:
1.1) Update your project's composer.json file with next data:
"require": {
"reportportal/codeception": "1.0.x-dev"
},
Use as an example: https://github.com/Mikalai-Kabzar/Codeception-test-framework-for-Yandex/blob/master/composer.json
OR
1.2) Execute command:
composer require reportportal/codeception 1.0.x-dev
2) Update codeception.yml file of your test framework according to codeception.yml file in this repository.
extensions:
enabled:
- ...
- agentPHPCodeception
- ...
config:
...
agentPHPCodeception:
UUID: 07104d6b-45a0-442f-b7ed-a79fa5321123
host: https://rp.epam.com
projectName: your_name_personal
timeZone: .000+00:00
launchName: test launch name !!!
launchDescription: test launch description !!!
...
Use as an example: https://github.com/Mikalai-Kabzar/Codeception-test-framework-for-Yandex/blob/master/codeception.yml
3) Execute command:
composer update