We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ca681a commit da858c1Copy full SHA for da858c1
test.sh
@@ -299,7 +299,8 @@ check_links()
299
if [[ `pytest --trace-config | grep rerunfailures | wc -l` -gt "0" ]]; then
300
RERUNS="--reruns 5"
301
fi
302
- pytest $RERUNS --check-links docs/Tutorial_*.ipynb notebooks/Tutorial_*.ipynb docs/*.md docs/*.rst ./*.md ./*.rst --check-links-ignore "https://dl.acm.org/doi/10.1145/3357223.3362721"
+ IGNORE_LINKS='--check-links-ignore "https://dl.acm.org/*"'
303
+ pytest $RERUNS --check-links docs/Tutorial_*.ipynb notebooks/Tutorial_*.ipynb docs/*.md docs/*.rst ./*.md ./*.rst $IGNORE_LINKS
304
check_errs $?
305
}
306
0 commit comments