README.md in buildkite-test_collector-2.7.0 vs README.md in buildkite-test_collector-2.7.1

- old
+ new

@@ -1,11 +1,11 @@ # Buildkite Collectors for Ruby **DEPRECATION NOTICE** Versions prior to 2.1.x are unsupported and will not work after mid-2023. Please upgrade to the latest version. -Official [Buildkite Test Analytics](https://buildkite.com/test-analytics) collectors for Ruby test frameworks ✨ +Official [Buildkite Test Engine](https://buildkite.com/platform/test-engine) collectors for Ruby test frameworks ✨ ⚒ **Supported test frameworks:** RSpec, Minitest, and [more coming soon](https://github.com/buildkite/test-collector-ruby/issues?q=is%3Aissue+is%3Aopen+label%3A%22test+frameworks%22). 📦 **Supported CI systems:** Buildkite, GitHub Actions, CircleCI, Codeship, and others via the `BUILDKITE_ANALYTICS_*` environment variables. @@ -66,17 +66,17 @@ ### Step 3 Add the `BUILDKITE_ANALYTICS_TOKEN` secret to your CI, push your changes to a branch, and open a pull request 🎉 ```bash -git checkout -b add-buildkite-test-analytics -git commit -am "Add Buildkite Test Analytics" -git push origin add-buildkite-test-analytics +git checkout -b add-buildkite-test-engine +git commit -am "Add Buildkite Test Engine" +git push origin add-buildkite-test-engine ``` ### VCR -If your test suites use [VCR](https://github.com/vcr/vcr) to stub network requests, you'll need to modify the config to allow actual network requests to Test Analytics. +If your test suites use [VCR](https://github.com/vcr/vcr) to stub network requests, you'll need to modify the config to allow actual network requests to Test Engine. ``` VCR.configure do |c| c.ignore_hosts "analytics-api.buildkite.com" end @@ -117,10 +117,10 @@ ``` bundle exec rspec ``` -Useful resources for developing collectors include the [Buildkite Test Analytics docs](https://buildkite.com/docs/test-analytics). +Useful resources for developing collectors include the [Buildkite Test Engine docs](https://buildkite.com/docs/test-engine). See [DESIGN.md](DESIGN.md) for an overview of the design of this gem. ## 👩‍💻 Contributing