From 061aa4a20dfb280e894f4c6a5dfa965d4fc685eb Mon Sep 17 00:00:00 2001 From: sean-morris Date: Mon, 8 Jul 2024 13:40:25 -0700 Subject: [PATCH] Test Points Per Question Row --- test/test_grade/test_integration.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/test/test_grade/test_integration.py b/test/test_grade/test_integration.py index 35a04404..d350646d 100644 --- a/test/test_grade/test_integration.py +++ b/test/test_grade/test_integration.py @@ -139,9 +139,6 @@ def test_notebooks_with_pdfs(expected_points): # read the output and expected output df_test = pd.read_csv("test/final_grades.csv") - #remove points possible row - df_test = df_test[df_test['file'] != POINTS_POSSIBLE_LABEL] - # sort by filename df_test = df_test.sort_values("file").reset_index(drop=True) df_test["failures"] = df_test["file"].apply(lambda x: [int(n) for n in re.split(r"\D+", x) if len(n) > 0])