##// END OF EJS Templates
Fix exclusion of tests directories from coverage reports
Thomas Kluyver -
Show More
@@ -458,7 +458,7 b' def run_iptestall(options):'
458
458
459 # Reimplement the html_report method with our custom reporter
459 # Reimplement the html_report method with our custom reporter
460 cov._harvest_data()
460 cov._harvest_data()
461 cov.config.from_args(omit='*%stests' % os.sep, html_dir=html_dir,
461 cov.config.from_args(omit='*{0}tests{0}*'.format(os.sep), html_dir=html_dir,
462 html_title='IPython test coverage',
462 html_title='IPython test coverage',
463 )
463 )
464 reporter = CustomHtmlReporter(cov, cov.config)
464 reporter = CustomHtmlReporter(cov, cov.config)
General Comments 0
You need to be logged in to leave comments. Login now