Skip to content

Fixtures for testing dbx (by Databricks Labs) projects

License

Notifications You must be signed in to change notification settings

jmeidam/pytest-dbx

Repository files navigation

pytest-dbx

Pytest plugin for testing dbx-based projects.

Install

To use the fixtures in your project, simply add pytest-dbx to your project's dev-dependencies (where you would place all your test and build dependencies).

Fixtures

In unit tests you can use the dbx_spark fixture to have a spark session available as in Databricks

def test_function(dbx_spark):
    sdf = dbx_spark.createDataFrame([[1], [2], [3]], ['a'])
    assert sdf.count() == 3

The dbutils_fixture and mlflow_local are automatically used.

About

Fixtures for testing dbx (by Databricks Labs) projects

Resources

License

Stars

Watchers

Forks

Packages

No packages published