From 5f40f75d1d6abd9bc0ff706a3705ddb4be228f52 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Mon, 28 Dec 2015 14:53:36 +0100 Subject: [PATCH] * Use --tb=native for py.test in build.py --- build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.py b/build.py index 214775dd7..ac3c489e3 100644 --- a/build.py +++ b/build.py @@ -65,7 +65,7 @@ elif install_mode == 'test': os.chdir('tmp') x('python -m spacy.en.download') - x('python -m pytest ../spacy/ -x --models --vectors --slow') + x('python -m pytest --tb="native" ../spacy/ -x --models --vectors --slow') finally: os.chdir(old)