File tree Expand file tree Collapse file tree 3 files changed +7
-6
lines changed
src/test/java/io/github/utplsql/api/rules Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 1515 - CACHE_DIR=$HOME/.cache
1616 - MAVEN_HOME=/usr/local/maven
1717 - MAVEN_CFG=$HOME/.m2
18- - API_DB_URL ="127.0.0.1:1521:XE"
19- - API_DB_USER=api
20- - API_DB_PASS=api
18+ - DB_URL ="127.0.0.1:1521:XE"
19+ - DB_USER=app
20+ - DB_PASS=app
2121 matrix :
2222 - ORACLE_VERSION="11g-xe-r2" DOCKER_OPTIONS="--shm-size=1g"
2323
Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ docker cp ./create_api_user.sh $ORACLE_VERSION:/create_api_user.sh
2828
2929# Remove temporary files.
3030# rm $UTPLSQL_FILE.tar.gz
31+ rm -rf $UTPLSQL_FILE
3132rm install.sh.tmp
3233
3334# Execute the utPLSQL installation inside the container.
Original file line number Diff line number Diff line change @@ -18,9 +18,9 @@ public class DatabaseRule extends ExternalResource {
1818 private static String sPass ;
1919
2020 static {
21- sUrl = System .getenv ("API_DB_URL " ) != null ? System .getenv ("API_DB_URL " ) : "127.0.0.1 :1521:XE" ;
22- sUser = System .getenv ("API_DB_USER " ) != null ? System .getenv ("API_DB_USER " ) : "app" ;
23- sPass = System .getenv ("API_DB_PASS " ) != null ? System .getenv ("API_DB_PASS " ) : "app" ;
21+ sUrl = System .getenv ("DB_URL " ) != null ? System .getenv ("DB_URL " ) : "192.168.99.100 :1521:XE" ;
22+ sUser = System .getenv ("DB_USER " ) != null ? System .getenv ("DB_USER " ) : "app" ;
23+ sPass = System .getenv ("DB_PASS " ) != null ? System .getenv ("DB_PASS " ) : "app" ;
2424 }
2525
2626 private List <Connection > connectionList ;
You can’t perform that action at this time.
0 commit comments