Use local IP instead of deprecated docker IP
This commit is contained in:
parent
6bf2ddb762
commit
a711ad0e90
1 changed files with 2 additions and 2 deletions
|
@ -45,7 +45,7 @@ run_tests() {
|
||||||
|
|
||||||
#echo '> Running Full Test Suite (mysql)'
|
#echo '> Running Full Test Suite (mysql)'
|
||||||
#set +e
|
#set +e
|
||||||
#run_tests "mysql+pymysql://root:password@192.168.59.103/genschema"
|
#run_tests "mysql+pymysql://root:password@127.0.0.1/genschema"
|
||||||
#set -e
|
#set -e
|
||||||
#down_mysql
|
#down_mysql
|
||||||
|
|
||||||
|
@ -55,6 +55,6 @@ up_postgres
|
||||||
|
|
||||||
echo '> Running Full Test Suite (postgres)'
|
echo '> Running Full Test Suite (postgres)'
|
||||||
set +e
|
set +e
|
||||||
run_tests "postgresql://postgres@192.168.59.103/genschema"
|
run_tests "postgresql://postgres@127.0.0.1/genschema"
|
||||||
set -e
|
set -e
|
||||||
down_postgres
|
down_postgres
|
||||||
|
|
Reference in a new issue