Skip to content

Commit

Permalink
Patch release v0.6.15 (#565)
Browse files Browse the repository at this point in the history
* lets go

* add fit_transform to object

* add an ignore
  • Loading branch information
koaning committed Jul 18, 2023
1 parent c42b067 commit c1d413e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sklego/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.6.14"
__version__ = "0.6.15"
4 changes: 4 additions & 0 deletions tests/test_pipeline/test_debug_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ def fit(self, X, y=None):
def transform(self, X):
return X + self._value

def fit_transform(self, X, y=None):
self.fit(X, y)
return self.transform(X)

def __repr__(self):
return f"Adder(value={self._value})"

Expand Down
2 changes: 1 addition & 1 deletion tests/test_pipeline/test_debug_pipeline_w_sklearn_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

# In `test_set_pipeline_step_passthrough` the signature of the DebugPipeline
# includes a `log_callback`, which is not expected.
IGNORE_TESTS = ("test_set_pipeline_step_passthrough", "test_pipeline_raise_set_params_error")
IGNORE_TESTS = ("test_set_pipeline_step_passthrough", "test_pipeline_raise_set_params_error", "test_set_pipeline_steps")


for name, attr in test_pipeline.__dict__.items():
Expand Down

0 comments on commit c1d413e

Please sign in to comment.