Skip to content

Commit

Permalink
Tweak output formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
apjanke committed Apr 20, 2019
1 parent ed3b701 commit 67d5a85
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions inst/+testify/+internal/BistRunner.m
Original file line number Diff line number Diff line change
Expand Up @@ -229,22 +229,22 @@ function restore_diary_state (this, state)

function out = run_tests (this)
%RUN_TESTS Run the tests found in this file
persistent signal_fail = "!!!!! ";
persistent signal_empty = "????? ";
persistent signal_block = "***** ";
persistent signal_file = ">>>>> ";
persistent signal_skip = "----- ";
persistent signal_fail = "!!!!!";
persistent signal_empty = "?????";
persistent signal_block = "*****";
persistent signal_file = ">>>>>";
persistent signal_skip = "-----";

this.pick_and_create_run_tmp_dir;
saved_files = false;

test_code = this.extract_test_code;
if isempty (test_code)
this.emit ("%s????? %s has no tests\n", this.file);
this.emit ("%s %s has no tests\n", signal_empty, this.file);
return
endif
this.emit ("\n");
this.emit (">>>>> %s\n", this.file);
this.emit ("%s %s\n", signal_file, this.file);
blocks = this.parse_test_code (test_code);

blocks = this.maybe_shuffle_blocks (blocks);
Expand Down

0 comments on commit 67d5a85

Please sign in to comment.