Skip to content

Commit

Permalink
#26: wip
Browse files Browse the repository at this point in the history
Signed-off-by: Dominik Hoffmann <dominik151099@outlook.de>
  • Loading branch information
dh1542 committed Nov 19, 2024
1 parent 8f48597 commit 2fdf381
Showing 1 changed file with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,17 @@
import logging


@pytest.fixture(scope="session")
def spark():
spark = (
SparkSession.builder.master("local[2]")
.appName("LogCollectionTest")
.getOrCreate()
)
yield spark
spark.stop()


def test_logger_manager_basic_function():
df = DataFrame()
monitor = IdentifyMissingDataInterval(
Expand Down

0 comments on commit 2fdf381

Please sign in to comment.