-
Notifications
You must be signed in to change notification settings - Fork 11
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
removed persistent buffer and fixed some typos. #150
Conversation
Something still seems to be wacky with the GitHub actions. The build errored on "docs test #62" but if you look at the error log it's a result from a stale tutorial, which is fixed in this PR. IDK if this has to do with the MystNB cache or the GitHub actions cache or both. |
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.
Thanks for fixing the typo in images_test! I suspect it's the cache. Might need to update the conf.py
file as it's currently set to cache mode.
Line 93 in b6d9b24
nb_execution_mode = "cache" |
Testing a change in the configuration to update cached files
I think I understand now. The tests were failing on the
So, actions run using |
Thanks for tracking this down! If the |
I think pull_request_target is needed to run tests on a PR from a fork
(just pull_request wasn’t running tests on the last forked PR), but maybe
there’s another workaround.
…On Sat, Feb 11, 2023 at 17:08 Ian Czekala ***@***.***> wrote:
Thanks for tracking this down! If the pull_request_target action is just
running on the main branch, is there any utility to it then, at least in
our workflow? @jeffjennings <https://github.com/jeffjennings>
—
Reply to this email directly, view it on GitHub
<#150 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AEBKMABUPMR5RY6ZQPB3JWLWXAEW7ANCNFSM6AAAAAAUYNO4OE>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
Thanks, that makes sense! |
Closes #143