Add "--with-id" to default settings passed to nose testing. (#608)

This enables "--failed" option to only run tests that failed in the last run
This commit is contained in:
Glen Smith
2017-07-12 23:13:03 +02:00
committed by Honza Král
parent d6fb95353e
commit a523159e9e
+1 -2
View File
@@ -61,7 +61,7 @@ def run_all(argv=None):
'nosetests', '--with-xunit',
'--with-xcoverage', '--cover-package=elasticsearch', '--cover-erase',
'--logging-filter=elasticsearch', '--logging-level=DEBUG',
'--verbose',
'--verbose', '--with-id',
]
nose.run_exit(
@@ -71,4 +71,3 @@ def run_all(argv=None):
if __name__ == '__main__':
run_all(sys.argv)