Skip to content
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

Set ctx.current_fragment_id in both full script and fragment runs #8931

Merged
merged 1 commit into from
Jun 19, 2024

Conversation

vdonato
Copy link
Collaborator

@vdonato vdonato commented Jun 18, 2024

We previously used ctx.current_fragment_id to determine whether a script runner execution is a full
script run or a fragment rerun. We later switched to using ctx.fragment_ids_this_run to support
multiple fragments being run from a single script runner but still had the script runner be responsible
for setting ctx.current_fragment_id outside of the fragment's outer function.

It turns out that having the fragment's outer function be reponsible for this fixes the issue we were having
with nested fragments not working correctly, so this PR makes the simple required change to fix nested
fragments/dialogs.

Closes #8635

@vdonato vdonato changed the title [WIP] Set ctx.current_fragment_id in both full script and fragment runs Set ctx.current_fragment_id in both full script and fragment runs Jun 19, 2024
@vdonato vdonato marked this pull request as ready for review June 19, 2024 18:59
Copy link
Collaborator

@raethlein raethlein left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yay!

e2e_playwright/st_fragments_nested_test.py Outdated Show resolved Hide resolved
@vdonato vdonato merged commit cf0f92b into feature/st.fragment Jun 19, 2024
24 of 25 checks passed
@vdonato vdonato deleted the vdonato/fix/8635 branch June 19, 2024 20:40
vdonato added a commit that referenced this pull request Jun 20, 2024
)

We previously used `ctx.current_fragment_id` to determine whether a script runner execution is a full
script run or a fragment rerun. We later switched to using `ctx.fragment_ids_this_run` to support
multiple fragments being run from a single script runner but still had the script runner be responsible
for setting `ctx.current_fragment_id` outside of the fragment's outer function.

It turns out that having the fragment's outer function be reponsible for this fixes the issue we were having
with nested fragments not working correctly, so this PR makes the simple required change to fix nested
fragments/dialogs.

Closes #8635
vdonato added a commit that referenced this pull request Jun 21, 2024
)

We previously used `ctx.current_fragment_id` to determine whether a script runner execution is a full
script run or a fragment rerun. We later switched to using `ctx.fragment_ids_this_run` to support
multiple fragments being run from a single script runner but still had the script runner be responsible
for setting `ctx.current_fragment_id` outside of the fragment's outer function.

It turns out that having the fragment's outer function be reponsible for this fixes the issue we were having
with nested fragments not working correctly, so this PR makes the simple required change to fix nested
fragments/dialogs.

Closes #8635
vdonato added a commit that referenced this pull request Jul 1, 2024
)

We previously used `ctx.current_fragment_id` to determine whether a script runner execution is a full
script run or a fragment rerun. We later switched to using `ctx.fragment_ids_this_run` to support
multiple fragments being run from a single script runner but still had the script runner be responsible
for setting `ctx.current_fragment_id` outside of the fragment's outer function.

It turns out that having the fragment's outer function be reponsible for this fixes the issue we were having
with nested fragments not working correctly, so this PR makes the simple required change to fix nested
fragments/dialogs.

Closes #8635
vdonato added a commit that referenced this pull request Jul 1, 2024
)

We previously used `ctx.current_fragment_id` to determine whether a script runner execution is a full
script run or a fragment rerun. We later switched to using `ctx.fragment_ids_this_run` to support
multiple fragments being run from a single script runner but still had the script runner be responsible
for setting `ctx.current_fragment_id` outside of the fragment's outer function.

It turns out that having the fragment's outer function be reponsible for this fixes the issue we were having
with nested fragments not working correctly, so this PR makes the simple required change to fix nested
fragments/dialogs.

Closes #8635
vdonato added a commit that referenced this pull request Jul 2, 2024
)

We previously used `ctx.current_fragment_id` to determine whether a script runner execution is a full
script run or a fragment rerun. We later switched to using `ctx.fragment_ids_this_run` to support
multiple fragments being run from a single script runner but still had the script runner be responsible
for setting `ctx.current_fragment_id` outside of the fragment's outer function.

It turns out that having the fragment's outer function be reponsible for this fixes the issue we were having
with nested fragments not working correctly, so this PR makes the simple required change to fix nested
fragments/dialogs.

Closes #8635
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants