summaryrefslogtreecommitdiffstats
path: root/integrations/README.md
diff options
context:
space:
mode:
authorBetaCat <outman99@hotmail.com>2018-10-15 12:13:21 +0800
committerLunny Xiao <xiaolunwen@gmail.com>2018-10-15 12:13:21 +0800
commit4090204944085a0a1b71912ee4c2b1c8d2d15245 (patch)
tree1e6320838e4533fff246064b7a1ab954edc2a2e4 /integrations/README.md
parent970c690681f563054a0eb2f693f99584bebea754 (diff)
downloadgitea-4090204944085a0a1b71912ee4c2b1c8d2d15245.tar.gz
gitea-4090204944085a0a1b71912ee4c2b1c8d2d15245.zip
CN translation of README (#5050)
Diffstat (limited to 'integrations/README.md')
-rw-r--r--integrations/README.md15
1 files changed, 8 insertions, 7 deletions
diff --git a/integrations/README.md b/integrations/README.md
index 927368818c..a88cec6e4f 100644
--- a/integrations/README.md
+++ b/integrations/README.md
@@ -2,14 +2,16 @@
Integration tests can be run with make commands for the
appropriate backends, namely:
-
- make test-mysql
- make test-pgsql
- make test-sqlite
+```shell
+make test-mysql
+make test-pgsql
+make test-sqlite
+```
Make sure to perform a clean build before running tests:
-
- make clean build
+```
+make clean build
+```
## Run all tests via local drone
```
@@ -45,7 +47,6 @@ TEST_PGSQL_HOST=$(docker inspect -f '{{range .NetworkSettings.Networks}}{{.IPAdd
## Running individual tests
Example command to run GPG test with sqlite backend:
-
```
go test -c code.gitea.io/gitea/integrations \
-o integrations.sqlite.test -tags 'sqlite' &&