Only pull the Database Docker image for the test that requires it.

Signed-off-by: Michael Price <loneviking72@gmail.com>
This commit is contained in:
Michael Price
2018-02-23 01:38:06 -04:00
committed by Roberto Rosario
parent a1c8b8e5de
commit 7b68e271c8

View File

@@ -1,7 +1,4 @@
image: ubuntu:16.04
services:
- mysql:latest
- postgres
before_script:
- apt-get -qq update
- apt-get install -qq locales
@@ -16,6 +13,8 @@ variables:
MYSQL_ALLOW_EMPTY_PASSWORD: "yes"
MYSQL_DATABASE: "mayan_edms"
test:mysql:
services:
- mysql:latest
script:
- apt-get install -qq libmysqlclient-dev
- pip install -r requirements/testing.txt
@@ -27,6 +26,8 @@ test:mysql:
tags:
- mysql
test:postgres:
services:
- postgres
script:
- apt-get install -qq libpq-dev
- pip install -r requirements/testing.txt