responsible-ai-toolbox/rai_test_utils/tests
Gaurav Gupta 6eea36c28b
Add `create_complex_regression_pipeline` to `sklearn_model_utils.py` (#2318)
* Add `create_complex_regression_pipeline` to `sklearn_model_utils.py`

Signed-off-by: Gaurav Gupta <gaugup@microsoft.com>

* Add version update

Signed-off-by: Gaurav Gupta <gaugup@microsoft.com>

* add pandas timestamps and test

* Update test_data_processing_utils.py

* Update test_data_processing_utils.py

---------

Signed-off-by: Gaurav Gupta <gaugup@microsoft.com>
Co-authored-by: Roman Lutz <romanlutz13@gmail.com>
2023-09-07 22:48:19 +00:00
..
README.md Create README.md for python tests (#1984) 2023-02-25 04:25:41 +00:00
test_data_utils.py OD model and data util functions in rai_test_utils (#2246) 2023-08-26 02:56:24 +00:00
test_model_utils.py Add `create_complex_regression_pipeline` to `sklearn_model_utils.py` (#2318) 2023-09-07 22:48:19 +00:00
test_utils.py Add `is_valid_uuid` to `rai_test_utils` (#2061) 2023-05-17 20:44:29 +00:00

README.md

For running unit tests for rai_test_utils locally with your changes, you would need an editable install of rai_test_utils. From the top level directory you can install an editable version of rai_test_utils using the following command:-

pip install -e rai_test_utils

If you are in the rai_test_utils directory, then the folllowing command will install an editable version of rai_test_utils:-

pip install -e .

You would also need to install the test dependencies defined in file rai_test_utils/requirements-dev.txt.

pip install -r requirements-dev.txt

For running the unit tests, you may do the following:-

cd tests
pytest .