Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ci-reporter/ci_reporter
CI::Reporter is an add-on to popular test frameworks that allows you to generate XML reports
https://github.com/ci-reporter/ci_reporter
Last synced: 3 months ago
JSON representation
CI::Reporter is an add-on to popular test frameworks that allows you to generate XML reports
- Host: GitHub
- URL: https://github.com/ci-reporter/ci_reporter
- Owner: ci-reporter
- License: mit
- Created: 2008-03-01T22:38:26.000Z (over 16 years ago)
- Default Branch: main
- Last Pushed: 2023-02-09T18:08:58.000Z (almost 2 years ago)
- Last Synced: 2024-08-02T08:10:36.017Z (3 months ago)
- Language: Ruby
- Homepage:
- Size: 366 KB
- Stars: 343
- Watchers: 11
- Forks: 111
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- Changelog: History.txt
- License: LICENSE.txt
Awesome Lists containing this project
README
CI::Reporter is an add-on to Ruby testing frameworks like Test::Unit
or RSpec that allows you to generate XML reports of your test
runs. The resulting files can be read by a continuous integration
system that understands Ant's JUnit report XML format, thus allowing
your CI system to track test/spec successes and failures.[![Gem Version](https://badge.fury.io/rb/ci_reporter.svg)](http://badge.fury.io/rb/ci_reporter)
[![Build Status](https://github.com/ci-reporter/ci_reporter/actions/workflows/ci.yaml/badge.svg)](https://github.com/ci-reporter/ci_reporter/actions/workflows/ci.yaml)
[![Code Climate](https://codeclimate.com/github/ci-reporter/ci_reporter.png)](https://codeclimate.com/github/ci-reporter/ci_reporter)## Usage
CI::Reporter works with projects that use standard Rake tasks for
running tests. In this fashion, it hooks into testing frameworks using
environment variables recognized by these custom tasks to inject the
CI::Reporter code into the test run.Each supported testing framework is provided by a separate gem:
* [Cucumber][ci-cuke]
* [Minitest][ci-mt]
* [RSpec][ci-rspec]
* [Spinach][ci-spin]
* [Test::Unit][ci-tu][ci-cuke]: https://github.com/ci-reporter/ci_reporter_cucumber
[ci-mt]: https://github.com/ci-reporter/ci_reporter_minitest
[ci-rspec]: https://github.com/ci-reporter/ci_reporter_rspec
[ci-spin]: https://github.com/ci-reporter/ci_reporter_spinach
[ci-tu]: https://github.com/ci-reporter/ci_reporter_test_unit### Upgrading from CI::Reporter 1.x
CI::Reporter 1.x supported all the different test frameworks in a
single gem. This was convenient, but caused issues as test frameworks
released new, sometimes incompatibile, versions. CI::Reporter 2.x has
been split into multiple gems, allowing each gem to specify the test
framework versions it supports.To upgrade to 2.x, remove `ci_reporter` from your Gemfile and replace
it with one or more of the framework-specific gems above.## Jenkins setup
1. Add the "Publish JUnit test result report" post-build step
in the job configuration.2. Enter "test/reports/\*.xml,spec/reports/\*.xml" in the "Test report
XMLs" field (adjust this to suit which tests you are running)Report files are written, by default, to the
test/reports
,features/reports
orspec/reports
subdirectory of your project. If you wish
to customize the location, simply set the environment variable
CI_REPORTS (either in the environment, on the Rake command line, or in
your Rakefile) to the location where they should go.## Conditional reporting
You may not wish to always produce report files. There are two primary
ways to configure this:### With environment variables
Use an environment variable in your Rakefile to control if CI:Reporter
will be invoked:```ruby
if ENV['GENERATE_REPORTS'] == 'true'
require 'ci/reporter/rake/rspec'
task :spec => 'ci:setup:rspec'
end
```You can either inject this variable in your CI or simply call `rake`
with the environment variable set:```
GENERATE_REPORTS=true rake spec
```### With CI-specific Rake tasks
Instead of modifying your existing Rake tasks, create new ones:
```ruby
namespace :ci do
task :all => ['ci:setup:rspec', 'spec']
end
```Then use this Rake target in CI:
```
rake ci:all
```## Environment Variables
* `CI_REPORTS`: if set, points to a directory where report files will
be written.
* `CI_CAPTURE`: if set to value "off", stdout/stderr capture will be
disabled.