-
Notifications
You must be signed in to change notification settings - Fork 185
Add ability to run tests by part of a name. #1203
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There is still no error handling.
Addressing issue of WITH error ORA-32036: unsupported case for inlining of query name in WITH clause
modifying code to cater for path with wildcard that can result in large item duplication due to parent/child search.
Codecov Report
@@ Coverage Diff @@
## develop #1203 +/- ##
===========================================
+ Coverage 94.39% 94.49% +0.10%
===========================================
Files 107 108 +1
Lines 5063 5086 +23
Branches 22 22
===========================================
+ Hits 4779 4806 +27
+ Misses 276 273 -3
+ Partials 8 7 -1
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I see a problem with this PR (besides the specific comments)
Only 329 tests get executed when this branch is used as source for installing into UT3 schema. So it looks like only tests from one schema are executed. See here
That indicates there is a regression bug/problem that is not captured by existing unit tests.
Thats interesting, good spot... |
Solution was to introduce a sort order that work from bottom to top.
So that was caused by sorting of paths before passing to |
There are tests missing for:
Documentation also does not mention that wildcard can be used in any part of path/object_name/procedure_name So does it mean that wildcard is allowed only at the end of the search string or should the doc & tests be updated? |
…_by_part_of_name # Conflicts: # source/core/ut_suite_manager.pkb
Added extra tests for different scenarios.
…om/utPLSQL/utPLSQL into feature/call_tests_by_part_of_name
…cross two owners being removed.
Kudos, SonarCloud Quality Gate passed! |
Introducing a capability to call tests by part of name.
We can call out using path or object name / procedure name.
Schema name has to be defined.
This will allow to simplify a syntax for multiple tests / suites e.g.
or
Closes #470
Closes #1148