Skip to content

Commit

Permalink
chore: ignore DS_Store when zipping autograder
Browse files Browse the repository at this point in the history
  • Loading branch information
FlickerSoul committed Nov 13, 2023
1 parent 273d769 commit 84f61e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gapper/core/file_handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def __init__(self, tester: Tester) -> None:
"requirements.txt",
}
self.ignore_folder = {"__pycache__"}
self.ignore_files = {".pyc"}
self.ignore_files = {".pyc", ".DS_Store"}

def generate_zip(self, zip_file_path: Path) -> None:
"""Generate the autograder zip file given a save path.
Expand Down

0 comments on commit 84f61e4

Please sign in to comment.