diff --git a/Documentation/dev-e2e-tests.txt b/Documentation/dev-e2e-tests.txt index 77b80a2f11..308c3e2228 100644 --- a/Documentation/dev-e2e-tests.txt +++ b/Documentation/dev-e2e-tests.txt @@ -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] diff --git a/e2e-tests/load-tests/README.md b/e2e-tests/load-tests/README.md deleted file mode 100644 index 534fde5347..0000000000 --- a/e2e-tests/load-tests/README.md +++ /dev/null @@ -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 -```