https://github.com/rolemodel/test_failure_transmitter
Transmit test failures to the Test Failure Logger
https://github.com/rolemodel/test_failure_transmitter
Last synced: 11 months ago
JSON representation
Transmit test failures to the Test Failure Logger
- Host: GitHub
- URL: https://github.com/rolemodel/test_failure_transmitter
- Owner: RoleModel
- Created: 2016-02-19T22:15:30.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-02-19T22:16:44.000Z (over 10 years ago)
- Last Synced: 2025-05-25T08:03:01.100Z (about 1 year ago)
- Language: Ruby
- Size: 9.77 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Test Failure Transmitter
A spike at creating a plugin for RSpec that logs test failure data to an external service
# Usage
The formatter requires some configuration:
```rb
FailureFrequencyFormatter.configure do |config|
config.host = 'localhost'
config.port = 3000
config.path = '/projects/1/test_results'
end
```
To use it: `rspec --format FailureFrequencyFormatter`