e2e-tests: Move docker doc to Documentation page

To keep all e2e tests documentation and instructions in one go-to place.

Change-Id: Ie5fc8af928a8ce422c6bd2a11f8329626af087a2
This commit is contained in:
Marco Miller 2020-01-30 12:14:15 -05:00
parent 0499d24357
commit 75a604684a
2 changed files with 12 additions and 11 deletions

View File

@ -45,6 +45,12 @@ example which is singular.
[warn] Credentials file ~/.sbt/sonatype_credentials does not exist
----
==== How to build using Docker
----
docker build . -t e2e-tests
----
==== Setup
If you are running SSH commands, the private keys of the users used for testing need to go in
@ -100,6 +106,12 @@ Generate the last report:
sbt "gatling:lastReport"
----
==== How to run using Docker
----
docker run -it e2e-tests -s com.google.gerrit.scenarios.ReplayRecordsFromFeederScenario
----
GERRIT
------
Part of link:index.html[Gerrit Code Review]

View File

@ -1,11 +0,0 @@
# How to build the Docker image
```$shell
docker build . -t e2e-tests
```
# How to run a test
```$shell
docker run -it e2e-tests -s com.google.gerrit.scenarios.ReplayRecordsFromFeederScenario
```