Skip to content

Commit b25ee3f

Browse files
authored
Add fixed timestamp to quickstart data (#1513)
Signed-off-by: Jacob Klegar <jacob@tecton.ai>
1 parent 476d296 commit b25ee3f

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

sdk/python/feast/driver_test_data.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,12 @@ def create_driver_hourly_stats_df(drivers, start_date, end_date) -> pd.DataFrame
111111
start=start_date, end=end_date, freq="1H", closed="left"
112112
)
113113
]
114+
# include a fixed timestamp for get_historical_features in the quickstart
115+
+ [
116+
pd.Timestamp(
117+
year=2021, month=4, day=12, hour=7, minute=0, second=0, tz="UTC"
118+
)
119+
]
114120
}
115121
)
116122
df_all_drivers = pd.DataFrame()

0 commit comments

Comments
 (0)