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 15
15
- CACHE_DIR=$HOME/.cache
16
16
- MAVEN_HOME=/usr/local/maven
17
17
- 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
21
21
matrix :
22
22
- ORACLE_VERSION="11g-xe-r2" DOCKER_OPTIONS="--shm-size=1g"
23
23
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
28
28
29
29
# Remove temporary files.
30
30
# rm $UTPLSQL_FILE.tar.gz
31
+ rm -rf $UTPLSQL_FILE
31
32
rm install.sh.tmp
32
33
33
34
# 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 {
18
18
private static String sPass ;
19
19
20
20
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" ;
24
24
}
25
25
26
26
private List <Connection > connectionList ;
You can’t perform that action at this time.
0 commit comments