| # Licensed to the Apache Software Foundation (ASF) under one or more |
| # contributor license agreements. See the NOTICE file distributed with |
| # this work for additional information regarding copyright ownership. |
| # The ASF licenses this file to You under the Apache License, Version 2.0 |
| # (the "License"); you may not use this file except in compliance with |
| # the License. You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| |
| import logging |
| import pytest |
| import os |
| |
| from pyspark import HiveContext |
| from pyspark import SparkConf |
| from pyspark import SparkContext |
| from pyspark.streaming import StreamingContext |
| |
| def quiet_py4j(): |
| logger = logging.getLogger('py4j') |
| logger.setLevel(logging.WARN) |
| |
| @pytest.fixture(scope="session") |
| def spark_context(request): |
| conf = (SparkConf().setMaster("local[2]").setAppName("pytest-pyspark-local-testing")) |
| request.addfinalizer(lambda: sc.stop()) |
| |
| sc = SparkContext(conf=conf) |
| quiet_py4j() |
| return sc |
| |
| @pytest.fixture(scope="session") |
| def hive_context(spark_context): |
| return HiveContext(spark_context) |
| |
| @pytest.fixture(scope="session") |
| def streaming_context(spark_context): |
| return StreamingContext(spark_context, 1) |
| |
| @pytest.fixture(scope="session") |
| def setup_pyspark_env(): |
| os.environ['PYSPARK_DRIVER_PYTHON'] = '/usr/local/anaconda3/envs/nexus-messages3/bin/python' |
| os.environ['PYSPARK_PYTHON'] = '/usr/local/anaconda3/envs/nexus-messages3/bin/python' |