Revision 3eaf0ec5 snf-tools/synnefo_tools/burnin/common.py

b/snf-tools/synnefo_tools/burnin/common.py
475 475
    # Choose tests to run
476 476
    if opts.show_stale:
477 477
        # We will run the stale_testsuites
478
        return stale_testsuites
478
        return (stale_testsuites, True)
479 479

  
480 480
    if opts.tests != "all":
481 481
        testsuites = opts.tests
......
483 483
        testsuites = [tsuite for tsuite in testsuites
484 484
                      if tsuite not in opts.exclude_tests]
485 485

  
486
    return testsuites
486
    return (testsuites, opts.failfast)
487 487

  
488 488

  
489 489
# --------------------------------------------------------------------

Also available in: Unified diff