From a523159e9eb869af9639374e14dd3c1d313ed859 Mon Sep 17 00:00:00 2001 From: Glen Smith Date: Wed, 12 Jul 2017 15:13:03 -0600 Subject: [PATCH] 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 --- test_elasticsearch/run_tests.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test_elasticsearch/run_tests.py b/test_elasticsearch/run_tests.py index 40f2b478..75e371fd 100755 --- a/test_elasticsearch/run_tests.py +++ b/test_elasticsearch/run_tests.py @@ -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) -