Skip to content

Commit

Permalink
Placeholder
Browse files Browse the repository at this point in the history
Signed-off-by: Nok Lam Chan <[email protected]>
Signed-off-by: Nok <[email protected]>
  • Loading branch information
noklam committed Oct 29, 2023
1 parent 4ab1b7d commit ac17cef
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 0 deletions.
9 changes: 9 additions & 0 deletions docs/source/configuration.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
.. currentmodule:: pandera

.. _configuration:

Configuration
===============

*New in version 0.17.2*

1 change: 1 addition & 0 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -369,6 +369,7 @@ page or reach out to the maintainers and pandera community on
data_format_conversion
supported_libraries
integrations
configuration

.. toctree::
:maxdepth: 6
Expand Down
19 changes: 19 additions & 0 deletions tests/core/test_pandas_config.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
"""This module is to test the behaviour change based on defined config in pandera"""
# pylint:disable=import-outside-toplevel,abstract-method

import pyspark.sql.types as T

from pandera.config import CONFIG, ValidationDepth
from pandera.pyspark import (
Check,
DataFrameSchema,
Column,
DataFrameModel,
Field,
)
from tests.pyspark.conftest import spark_df


class TestPanderaConfig:
...

0 comments on commit ac17cef

Please sign in to comment.