-
Notifications
You must be signed in to change notification settings - Fork 83
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DOCS: Fix broken pytest fixture #546
Conversation
Thanks for submitting your first pull request! You are awesome! 🤗 |
a5e91ee
to
21c3666
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a good PR! Let me address the remainder of the failures.
# TODO: Remove when support for Sphinx<=6 is dropped, | ||
re.escape(" translation_progress=\"{'total': 0, 'translated': 0}\""), | ||
# TODO: Remove when support for Sphinx<7.2 is dropped, | ||
r"original_uri=\"[^\"]*\"\s", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a hack. But, I don't think it's the end of the world.
for more information, see https://pre-commit.ci
Codecov ReportAll modified lines are covered by tests ✅
📢 Thoughts on this report? Let us know!. |
Thanks so much for the support getting this merged! |
Summary
This PR fixes an instance where a
myst-nb
test fixture was using a test fixture that was previously provided by sphinx but was removed sometime between the release of6.2.1
and7.2.6
. Closes #545. This should also unblock a new release.Changes
tempdir
fixture forpytest
'stmpdir
fixture as a drop-in replacement.