Explicitly mark spark_context fixture as session-scoped

We also alter some quotes solely for consistency.
This commit is contained in:
Jeff Klukas 2018-08-16 16:16:48 -04:00
Родитель 3a8a6fbf07
Коммит d4c8319878
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -62,12 +62,12 @@ def spark():
spark.stop()
@pytest.fixture
@pytest.fixture(scope="session")
def spark_context(spark):
return spark.sparkContext
@pytest.fixture(scope='session')
@pytest.fixture(scope="session")
def data_dir():
here = os.path.dirname(__file__)
return os.path.join(here, 'data')