Skip to content

Commit

Permalink
Add fixed timestamp to quickstart data (#1513)
Browse files Browse the repository at this point in the history
Signed-off-by: Jacob Klegar <jacob@tecton.ai>
  • Loading branch information
jklegar authored and woop committed Apr 27, 2021
1 parent 077f71d commit 07c6302
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions sdk/python/feast/driver_test_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,12 @@ def create_driver_hourly_stats_df(drivers, start_date, end_date) -> pd.DataFrame
start=start_date, end=end_date, freq="1H", closed="left"
)
]
# include a fixed timestamp for get_historical_features in the quickstart
+ [
pd.Timestamp(
year=2021, month=4, day=12, hour=7, minute=0, second=0, tz="UTC"
)
]
}
)
df_all_drivers = pd.DataFrame()
Expand Down

0 comments on commit 07c6302

Please sign in to comment.