Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
chrzaszcz committed Dec 9, 2022
1 parent d9a5c46 commit de2a980
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .circleci/template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -582,7 +582,10 @@ jobs:
name: Run Big Tests
command: |
./tools/test.sh -p $PRESET -s false
cp big_tests/ct_report/*/junit_report.xml .
no_output_timeout: 40m
- store_test_results:
path: test-results
- run_coverage_analysis
- run:
name: Build Failed - Logs
Expand Down
3 changes: 2 additions & 1 deletion big_tests/dynamic_domains.spec
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,8 @@
ct_mim_config_hook,
ct_markdown_errors_hook,
{ct_mongoose_log_hook, [ejabberd_node, ejabberd_cookie]},
{ct_mongoose_log_hook, [ejabberd2_node, ejabberd_cookie]}
{ct_mongoose_log_hook, [ejabberd2_node, ejabberd_cookie]},
cth_surefire
]}.

%% To enable printing group and case enters on server side
Expand Down
2 changes: 1 addition & 1 deletion big_tests/run_common_test.erl
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,7 @@ get_cover_header() ->
bool_or_module_list("true") ->
true;
bool_or_module_list(ModuleList) when is_list(ModuleList) ->
[ list_to_atom(L) || L <- string:tokens("asd,qwe,zxc", ",") ];
[ list_to_atom(L) || L <- string:tokens(ModuleList, ", ") ];
bool_or_module_list(_) ->
false.

Expand Down

0 comments on commit de2a980

Please sign in to comment.