Skip to content

Commit

Permalink
Omit fuzzing directory from doctest
Browse files Browse the repository at this point in the history
  • Loading branch information
ennamarie19 committed Oct 19, 2023
1 parent a260eac commit f5c8358
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/icalendar/tests/test_with_doctest.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
PYTHON_FILES = [
os.path.join(dirpath, filename)
for dirpath, dirnames, filenames in os.walk(ICALENDAR_PATH)
for filename in filenames if filename.lower().endswith(".py")
for filename in filenames if filename.lower().endswith(".py") and 'fuzzing' not in dirpath
]

MODULE_NAMES = [
Expand Down

0 comments on commit f5c8358

Please sign in to comment.