Sha256: c4ae2bdc5ca093b24ed34f43701f77a77e08b2384b3722118b87daecc316473b

Contents?: true

Size: 919 Bytes

Versions: 7

Compression:

Stored size: 919 Bytes

Contents

# RSpec Buildkite Analytics

This gem collects data about your test suite's performance and reliability, and allows you to see trends and insights about your test suite over time ✨

## Installation

Add the gem to your Gemfile:

```ruby
group :test do
  # ...
  gem "rspec-buildkite-analytics"
end
```

Configure your API key:
```ruby
RSpec::Buildkite::Analytics.configure do |config|
  config.suite_key = "........"
  # other config
end
```

Run bundler to install the gem and update your `Gemfile.lock`:
```
$ bundle
```

Lastly, commit and push your changes to start analysing your tests:
```
$ git commit -m "Add Buildkite Test Analytics client"
$ git push
```

## Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/buildkite/rspec-buildkite-analytics.

## License

The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
rspec-buildkite-analytics-0.3.5 README.md
rspec-buildkite-analytics-0.3.4 README.md
rspec-buildkite-analytics-0.3.3 README.md
rspec-buildkite-analytics-0.3.2 README.md
rspec-buildkite-analytics-0.3.1 README.md
rspec-buildkite-analytics-0.3.0 README.md
rspec-buildkite-analytics-0.2.0 README.md