From 674ee5dde706a1922beb2607aa3ad811f904f359 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Sun, 7 Jun 2015 17:53:14 +0200 Subject: [PATCH] * Add conftest.py to tests/, to allow session-global pipeline. This allows much faster tests. --- tests/conftest.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 tests/conftest.py diff --git a/tests/conftest.py b/tests/conftest.py new file mode 100644 index 000000000..91b9097cc --- /dev/null +++ b/tests/conftest.py @@ -0,0 +1,7 @@ +import pytest +from spacy.en import English + + +@pytest.fixture(scope="session") +def EN(): + return English()