From cc81795c66752457e6904cbd0920788b822ff79d Mon Sep 17 00:00:00 2001 From: Hironsan Date: Tue, 1 Dec 2020 21:34:04 +0900 Subject: [PATCH] Update travis config to use runtime as target --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 4272f39d..94981e38 100644 --- a/.travis.yml +++ b/.travis.yml @@ -33,7 +33,7 @@ install: - pip install --no-cache-dir mkdocs==1.1 mkdocs-material==4.6.3 script: - - docker build --target=backend-builder --tag=doccano-test . + - docker build --target=runtime --tag=doccano-test . - > if [[ "${DATABASE}" != "sqlite" ]]; then docker run --network doccano -e DATABASE_URL="${DATABASE_URL}" -it doccano-test sh -c 'app/manage.py wait_for_db && app/manage.py migrate && app/manage.py test api.tests server.tests'