Skip to content

Commit b8fe154

Browse files
committed
fix handling of doctest skip
1 parent 51c650e commit b8fe154

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jupyter_releaser/lib.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def check_links(ignore_glob, ignore_links, cache_file, links_expire):
5353
cmd += "--disable-warnings --quiet "
5454
cmd += f"--check-links-cache-name {cache_dir}/check-release-links "
5555
# do not run doctests, since they might depend on other state.
56-
cmd += "--doctest-glob=*.skip"
56+
cmd += "-p no:doctest "
5757

5858
ignored = []
5959
for spec in ignore_glob:

0 commit comments

Comments
 (0)