diff --git a/.gitignore b/.gitignore index b62baa2..ee7ee3a 100644 --- a/.gitignore +++ b/.gitignore @@ -7,6 +7,12 @@ __pycache__/ *.py[cod] *$py.class *.so +*.pyc +*.pyo + +# Pytest cache +.pytest_cache/ +**/.pytest_cache/ # Package build artifacts *.egg-info/ @@ -41,9 +47,24 @@ mlruns/ outputs/*.png outputs/*.csv - +# MLflow database mlflow.db +# Great Expectations cache +gx/uncommitted/ + +# Temporary test files +test_shap_locally.py +model_logs.txt + +# Jupyter notebook checkpoints +.ipynb_checkpoints/ + +# Coverage reports +.coverage +htmlcov/ +*.cover + docs/*.md