Skip to content
Snippets Groups Projects
Commit 8a08f47d4926 authored by Vincent Hatakeyama's avatar Vincent Hatakeyama
Browse files

:pencil: remove prompt for password as it breaks CI

parent 2fd873eae8d1
No related branches found
Tags 15.3.0
No related merge requests found
......@@ -67,5 +67,5 @@
INSTALL_ARGUMENTS="--log-level=${INSTALL_LOG_LEVEL:-warn}"
echo ${YELLOW}INFO ${RESET} - Drop any existing database "$dbname"
dropdb $PG_HOST $PG_USER --if-exists $dbname
dropdb $PG_HOST $PG_USER --if-exists $dbname --no-password
echo ${YELLOW}INFO ${RESET} - Create database "$dbname" with owner $dbowner
......@@ -71,5 +71,5 @@
echo ${YELLOW}INFO ${RESET} - Create database "$dbname" with owner $dbowner
createdb $PG_HOST $PG_USER -O $dbowner $dbname || { echo ${RED}FATAL${RESET} - Cannot create test database ; exit 1; }
createdb $PG_HOST $PG_USER -O $dbowner $dbname --no-password || { echo ${RED}FATAL${RESET} - Cannot create test database ; exit 1; }
unaccent=$(python -B -c "import ConfigParser ; c = ConfigParser.ConfigParser() ; c.read('${project_home}/conf/dev/odoo.conf') ; print c.get('options', 'unaccent', False)")
if [[ "$unaccent" == "True" ]];
then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment