We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa27caa commit 68986ddCopy full SHA for 68986dd
PostProcessing/test_functions.py
@@ -53,7 +53,8 @@ def test_session_data(session_data):
53
for vp, df in zip(video_paths, dataframes):
54
_, _, num_frames = video_info(vp)
55
num_rows = len(df)
56
- assert num_frames == num_rows, f"Num of frames in the video ({num_frames}) differs from the num of rows in the dataframe ({num_rows})."
+ # assert num_frames == num_rows, f"Num of frames in the video ({num_frames}) differs from the num of rows in the dataframe ({num_rows})."
57
+ assert num_frames <= num_rows, f"Num of frames in the video ({num_frames}) is higher than the number of rows in the dataframe ({num_rows})."
58
59
60
def session_data_list() -> List[Tuple[str, pd.DataFrame, str]]:
0 commit comments