Skip to content

Commit 6970bf2

Browse files
refactor: clean up EXCLUDED_FILENAMES constant by removing obsolete comment
1 parent ab62517 commit 6970bf2

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

tests/functional/e2e/testcases/parser.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,12 @@
55
_REPO_ROOT = Path(__file__).parent.parent.parent.parent.parent
66
TESTCASES_DIR = _REPO_ROOT / "athena-protobufs" / "testcases"
77

8+
<<<<<<< HEAD
89
EXCLUDED_FILENAMES: list[str] = []
910

1011

12+
=======
13+
>>>>>>> 83959ac (refactor: clean up EXCLUDED_FILENAMES constant by removing obsolete comment)
1114
class AthenaTestCase:
1215
def __init__(
1316
self,
@@ -37,5 +40,4 @@ def load_test_cases(dirname: str = "benign_model") -> list[AthenaTestCase]:
3740
test_cases["classification_labels"],
3841
)
3942
for item in test_cases["images"]
40-
if item[0] not in EXCLUDED_FILENAMES
4143
]

0 commit comments

Comments
 (0)