◐ Shell
clean mode source ↗

Feature - include/exclude objects and schemas by regex by lwasylow · Pull Request #1186 · utPLSQL/utPLSQL

Adding support for inclusion and exclusion of objects and schemas using regex.

begin
  ut.run(
    a_path => 'unit_test_schema', 
    a_reporter => ut_coverage_html_reporter(), 
    a_include_schema_expr => '(user_...)|(..._user)',
    a_include_object_expr => '(bonus.*)|(.*_process_.*)',
    a_exclude_schema_expr => '(user_t..)|(t.._user)',
    a_exclude_object_expr => '(.*award.*)|(.*calc.*)'
  );
end;

Current approach is that a_include_object_expr and a_include_schema_expr silently overwrites a_include_object_expr

Closes #1053