1
0
mirror of https://github.com/mattermost/focalboard.git synced 2025-03-17 20:37:54 +02:00

make testing all databases the default (#2043)

This commit is contained in:
Doug Lauder 2022-01-05 11:37:42 -05:00 committed by GitHub
parent 8cf73382b4
commit 23b83aa347
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -102,11 +102,11 @@ watch-single-user: modd-precheck ## Run both server and webapp in single user mo
watch-server-test: modd-precheck ## Run server tests watching for changes
modd -f modd-servertest.conf
server-test: ## Run server tests
server-test: server-test-sqlite server-test-mysql server-test-postgres ## Run server tests
server-test-sqlite: ## Run server tests using sqlite
cd server; go test -race -v -count=1 ./...
server-test-mysql: export FB_UNIT_TESTING=1
server-test-mysql: export FB_STORE_TEST_DB_TYPE=mysql
server-test-mysql: export FB_STORE_TEST_DOCKER_PORT=44445