diff options
author | 6543 <6543@obermui.de> | 2020-02-22 23:45:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-23 00:45:20 +0200 |
commit | fe26ca53c1f72c079ffc9bc51bb6b4d2279a3cd2 (patch) | |
tree | 5ae22a64a0b96ba4684b155cad3d9e860139cbae /integrations/README.md | |
parent | f4370639beb2072bcf4595bdd993ab58962e061a (diff) | |
download | gitea-fe26ca53c1f72c079ffc9bc51bb6b4d2279a3cd2.tar.gz gitea-fe26ca53c1f72c079ffc9bc51bb6b4d2279a3cd2.zip |
update integration README (#10400)
Diffstat (limited to 'integrations/README.md')
-rw-r--r-- | integrations/README.md | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/integrations/README.md b/integrations/README.md index 6ffd76815c..fccce2ec65 100644 --- a/integrations/README.md +++ b/integrations/README.md @@ -19,7 +19,7 @@ drone exec --local --build-event "pull_request" ``` ## Run sqlite integrations tests -Start tests +Start tests ``` make test-sqlite ``` @@ -27,7 +27,8 @@ make test-sqlite ## Run mysql integrations tests Setup a mysql database inside docker ``` -docker run -e "MYSQL_DATABASE=test" -e "MYSQL_ALLOW_EMPTY_PASSWORD=yes" -p 3306:3306 --rm --name mysql mysql:5.7 #(just ctrl-c to stop db and clean the container) +docker run -e "MYSQL_DATABASE=test" -e "MYSQL_ALLOW_EMPTY_PASSWORD=yes" -p 3306:3306 --rm --name mysql mysql:latest #(just ctrl-c to stop db and clean the container) +docker run -p 9200:9200 -p 9300:9300 -e "discovery.type=single-node" --rm --name elasticsearch elasticsearch:7.6.0 #(in a secound terminal, just ctrl-c to stop db and clean the container) ``` Start tests based on the database container ``` @@ -37,7 +38,7 @@ TEST_MYSQL_HOST=localhost:3306 TEST_MYSQL_DBNAME=test TEST_MYSQL_USERNAME=root T ## Run pgsql integrations tests Setup a pgsql database inside docker ``` -docker run -e "POSTGRES_DB=test" -p 5432:5432 --rm --name pgsql postgres:9.5 #(just ctrl-c to stop db and clean the container) +docker run -e "POSTGRES_DB=test" -p 5432:5432 --rm --name pgsql postgres:latest #(just ctrl-c to stop db and clean the container) ``` Start tests based on the database container ``` @@ -47,7 +48,7 @@ TEST_PGSQL_HOST=localhost:5432 TEST_PGSQL_DBNAME=test TEST_PGSQL_USERNAME=postgr ## Run mssql integrations tests Setup a mssql database inside docker ``` -docker run -e "ACCEPT_EULA=Y" -e "MSSQL_PID=Standard" -e "SA_PASSWORD=MwantsaSecurePassword1" -p 1433:1433 --rm --name mssql microsoft/mssql-server-linux:latest #(just ctrl-c to stop db and clean the container) +docker run -e "ACCEPT_EULA=Y" -e "MSSQL_PID=Standard" -e "SA_PASSWORD=MwantsaSecurePassword1" -p 1433:1433 --rm --name mssql microsoft/mssql-server-linux:latest #(just ctrl-c to stop db and clean the container) ``` Start tests based on the database container ``` @@ -68,4 +69,4 @@ For other databases(replace MSSQL to MYSQL, MYSQL8, PGSQL): ``` TEST_MSSQL_HOST=localhost:1433 TEST_MSSQL_DBNAME=test TEST_MSSQL_USERNAME=sa TEST_MSSQL_PASSWORD=MwantsaSecurePassword1 make test-mssql#GPG -```
\ No newline at end of file +``` |