Skip to content

Commit

Permalink
ci: add missing filter_nans kwarg to Pipeline test
Browse files Browse the repository at this point in the history
  • Loading branch information
MArpogaus committed Sep 12, 2024
1 parent 740e51c commit d5729f5
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions tests/test_pipleine.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,9 @@ def test_windowed_time_series_pipeline(
batch_size=batch_size,
drop_remainder=True,
)
pipeline_kwargs = dict(cycle_length=1, shuffle_buffer_size=100, cache=True)
pipeline_kwargs = dict(
cycle_length=1, shuffle_buffer_size=100, cache=True, filter_nans=False
)

with validate_args(
history_size=history_size,
Expand Down Expand Up @@ -239,7 +241,9 @@ def test_windowed_time_series_pipeline_groupby(
batch_size=batch_size,
drop_remainder=False,
)
pipeline_kwargs = dict(cycle_length=len(ids), shuffle_buffer_size=1000, cache=True)
pipeline_kwargs = dict(
cycle_length=len(ids), shuffle_buffer_size=1000, cache=True, filter_nans=False
)

with validate_args(
history_size=history_size,
Expand Down

0 comments on commit d5729f5

Please sign in to comment.