From 3b841565f0b6f15311f9c1eb13f6e27aea4f7b3a Mon Sep 17 00:00:00 2001 From: virusdefender Date: Mon, 4 Dec 2017 22:19:15 +0800 Subject: [PATCH] fix ci --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 9761c43f..a7df0250 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,7 +6,7 @@ services: - docker before_install: - docker pull postgres:10 - - docker run -it -d -e POSTGRES_DB=onlinejudge -e POSTGRES_USER=onlinejudge -e POSTGRES_PASSWORD=onlinejudge -p 127.0.0.1:5433:5432 postgres:10 + - docker run -it -d -e POSTGRES_DB=onlinejudge -e POSTGRES_USER=onlinejudge -e POSTGRES_PASSWORD=onlinejudge -p 127.0.0.1:5432:5432 postgres:10 install: - pip install -r deploy/requirements.txt - cp oj/custom_settings.example.py oj/custom_settings.py