You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: elasticsearch-api/README.md
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,9 @@ Language clients are forward compatible; meaning that clients support communicat
15
15
16
16
Refer to [CONTRIBUTING](https://github.com/elastic/elasticsearch-ruby/blob/main/CONTRIBUTING.md).
17
17
18
-
The integration tests on this project run the [Elasticsearch Client tests](https://github.com/elastic/elasticsearch-clients-tests/) with the [Elasticsearch Tests Runner](https://github.com/elastic/es-test-runner-ruby/) library. This runs in CI against an Elasticsearch cluster in Docker. You can run a docker container with Elasticsearch with a Rake task from the root directory of this project:
18
+
Use `bundle exec rake test:unit` to run Unit tests. Add the environment variable `COVERAGE` to see Simplecov test coverage.
19
+
20
+
The integration tests on this project run the [Elasticsearch Client tests](https://github.com/elastic/elasticsearch-clients-tests/) with the [Elasticsearch Tests Runner](https://github.com/elastic/es-test-runner-ruby/) library. You can run a docker container with Elasticsearch with a Rake task from the root directory of this project:
19
21
20
22
```bash
21
23
$ rake es:up
@@ -27,6 +29,8 @@ This will start whatever version of Elasticsearch is set in the Buildkite pipeli
27
29
$ rake es:start[version,suite] # e.g. rake es:start[9.0.0-SNAPSHOT, free]
28
30
```
29
31
32
+
You can run the integration tests with `bundle exec rake test:integration`.
33
+
30
34
### Code generation
31
35
32
36
The code for most of this library is automatically generated. See [./utils/README.md](utils/README.md) for more information.
0 commit comments