-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18 from utPLSQL/fix/coverage_fix
Fix/coverage fix
- Loading branch information
Showing
27 changed files
with
60 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
git clone --depth=1 --branch=${UTPLSQL_VERSION} https://github.com/utPLSQL/utPLSQL.git utPLSQL | ||
chmod -R go+w $(pwd)/utPLSQL/source | ||
docker run --rm -v $(pwd)/utPLSQL:/utPLSQL -w /utPLSQL/source --network host \ | ||
--entrypoint sqlplus gvenzl/oracle-xe:18-slim sys/oracle@//127.0.0.1:1521/XE as sysdba @install_headless.sql UT3 UT3 users | ||
--entrypoint sqlplus gvenzl/oracle-xe:21-slim sys/oracle@//127.0.0.1:1521/XE as sysdba @install_headless.sql UT3 UT3 users |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
docker run --rm -v $(pwd):/work -w /work/ --network host \ | ||
--entrypoint sqlplus gvenzl/oracle-xe:18-slim \ | ||
--entrypoint sqlplus gvenzl/oracle-xe:21-slim \ | ||
sys/oracle@//127.0.0.1:1521/XE as sysdba @source/create_user.sql | ||
|
||
docker run --rm -v $(pwd):/work -w /work/ --network host \ | ||
--entrypoint sqlplus gvenzl/oracle-xe:18-slim \ | ||
--entrypoint sqlplus gvenzl/oracle-xe:21-slim \ | ||
ut3_demo/ut3_demo@//127.0.0.1:1521/XE @source/install.sql |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
docker run --rm -v $(pwd):/work -w /work/ --network host \ | ||
--entrypoint sqlplus gvenzl/oracle-xe:18-slim \ | ||
--entrypoint sqlplus gvenzl/oracle-xe:21-slim \ | ||
ut3_demo/ut3_demo@//127.0.0.1:1521/XE @test/install.sql |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
@source/award_bonus/V1.01__employees_test.sql | ||
@source/award_bonus/R__award_bonus.prc | ||
@source/between_string/R__betwnstr.fnc | ||
@source/award_bonus/R__ut3_demo.award_bonus.prc | ||
@source/between_string/R__ut3_demo.betwnstr.fnc | ||
@source/remove_rooms_by_name/V1.02__rooms.sql | ||
@source/remove_rooms_by_name/R__remove_rooms_by_name.prc | ||
@source/remove_rooms_by_name/R__ut3_demo.remove_rooms_by_name.prc | ||
exit |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
@test/award_bonus/test_award_bonus.pks | ||
@test/award_bonus/test_award_bonus.pkb | ||
@test/award_bonus/ut3_demo.test_award_bonus.pks | ||
@test/award_bonus/ut3_demo.test_award_bonus.pkb | ||
show errors | ||
@test/between_string/test_betwnstr.pks | ||
@test/between_string/test_betwnstr.pkb | ||
@test/between_string/ut3_demo.test_betwnstr.pks | ||
@test/between_string/ut3_demo.test_betwnstr.pkb | ||
show errors | ||
@test/remove_rooms_by_name/test_remove_rooms_by_name.pks | ||
@test/remove_rooms_by_name/test_remove_rooms_by_name.pkb | ||
@test/remove_rooms_by_name/ut3_demo.test_remove_rooms_by_name.pks | ||
@test/remove_rooms_by_name/ut3_demo.test_remove_rooms_by_name.pkb | ||
show errors | ||
exit |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters