https://github.com/fr05t1k/testrail
The extension allows to integrate your tests with TestRail. First run will create test suites and test cases.
https://github.com/fr05t1k/testrail
codeception testrail tests
Last synced: 14 days ago
JSON representation
The extension allows to integrate your tests with TestRail. First run will create test suites and test cases.
- Host: GitHub
- URL: https://github.com/fr05t1k/testrail
- Owner: fr05t1k
- License: mit
- Created: 2019-04-25T12:32:45.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-04-19T21:17:00.000Z (over 2 years ago)
- Last Synced: 2024-12-15T03:08:20.348Z (about 1 year ago)
- Topics: codeception, testrail, tests
- Language: PHP
- Homepage:
- Size: 120 KB
- Stars: 1
- Watchers: 4
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Codeception TestRail Integration
The extension allows to integrate your test with TestRail. First run will create test suites and test cases.
# Features
* Creates test suites and test cases automaticaly
* Tracks all runs with given version
# Configuration:
```yml
extensions:
enabled:
- Codeception\TestRail\TestRailIntegrationExtension
config:
Codeception\TestRail\TestRailIntegrationExtension:
version: "%VERSION%"
url: "https://trail.example.com/index.php?"
username: "autotest@example.com"
password: "password"
projectId: "1"
```
# Run
```bash
> VERSION=1.2 codecept run api -d
Codeception PHP Testing Framework v2.5.4
Powered by PHPUnit 6.5.12 by Sebastian Bergmann and contributors.
Running with seed:
TestRails integration is enabled. Version: 1.2
...
Time: 4.4 seconds, Memory: 20.25MB
OK (3 tests, 11 assertions)
```