Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
replace .nodoctest with nodoctest
Browse files Browse the repository at this point in the history
  • Loading branch information
kiwifb committed Apr 2, 2020
1 parent 6a45805 commit 3ed398c
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sage/doctest/control.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ def skipdir(dirname):
sage: skipdir(os.path.join(sage.env.SAGE_SRC, "sage", "doctest", "tests"))
True
"""
if os.path.exists(os.path.join(dirname, "nodoctest.py")) or os.path.exists(os.path.join(dirname, ".nodoctest")):
if os.path.exists(os.path.join(dirname, "nodoctest.py")) or os.path.exists(os.path.join(dirname, "nodoctest")):
return True
return False

Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 3ed398c

Please sign in to comment.