Skip to content

Commit

Permalink
run-tests: no verbose output for skipped exchanges
Browse files Browse the repository at this point in the history
  • Loading branch information
mkutny committed Jan 24, 2018
1 parent 555878a commit 5187909
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions run-tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,9 @@ const testExchange = async (exchange) => {
for (const { language, failed, output, hasWarnings } of completeTests) {
if (failed || hasWarnings) {

if (!failed && output.indexOf('[Skipped]') >= 0)
continue;

if (failed) { log.bright ('\nFAILED'.bgBrightRed.white, exchange.red, '(' + language + '):\n') }
else { log.bright ('\nWARN'.yellow.inverse, exchange.yellow, '(' + language + '):\n') }

Expand Down

0 comments on commit 5187909

Please sign in to comment.