Skip to content

Commit

Permalink
fix handling of doctest skip
Browse files Browse the repository at this point in the history
  • Loading branch information
blink1073 committed Jan 17, 2022
1 parent 51c650e commit b8fe154
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jupyter_releaser/lib.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def check_links(ignore_glob, ignore_links, cache_file, links_expire):
cmd += "--disable-warnings --quiet "
cmd += f"--check-links-cache-name {cache_dir}/check-release-links "
# do not run doctests, since they might depend on other state.
cmd += "--doctest-glob=*.skip"
cmd += "-p no:doctest "

ignored = []
for spec in ignore_glob:
Expand Down

0 comments on commit b8fe154

Please sign in to comment.