Bump version to 0.4.0 - #6
Merged
Merged
Conversation
sfc-gh-mbarnes
pushed a commit
that referenced
this pull request
Apr 24, 2026
Three separate re-runs of PR #6 each failed with different random tests (filter bar chips, DnD zone result, dim-toggle aria-expanded), confirming that the root cause is resource contention on the 4-vCPU GitHub runner: 25+ pivot components per browser worker create enough Streamlit/React rendering pressure that assertion timeouts are exceeded intermittently. Changes: - conftest.py: raise the global default Playwright assertion timeout from 5 s to 15 s via `expect.set_options(timeout=15000)` in pytest_configure. Bare `expect(...).to_be_visible()` and `expect(...).to_have_attribute()` calls across the entire suite now tolerate slower renders. - e2e_utils.py (open_settings_panel): after `settings-panel` becomes visible, wait for at least one `settings-available-*` chip to appear (confirms allColumns has been delivered by the Arrow dataframe render cycle, not just that the outer div was committed). Follow with a 200 ms settle so the one-shot ResizeObserver that adjusts the available-fields container height fires before callers read bounding boxes for DnD. - pivot_table_interactions_test.py: replace short explicit timeouts on post-action assertions that were the direct cause of each failure: - filter chip visibility: 5 s → 15 s - DnD pre-drag source/target: 5 s → 15 s - DnD post-drop chip location: 5 s → 10 s - _drag_chip post-drop wait: 300 ms → 500 ms - header-menu show-as-% assertion: 10 s → 20 s - dim-toggle aria-expanded (locked): 10 s → 20 s - dim-toggle aria-expanded (dim_toggle): 5 s → 15 s - pytest.ini: add `--reruns 1 --reruns-delay 3` (pytest-rerunfailures is already a declared dependency) as a last-resort safety net for any remaining single-test flakiness. Made-with: Cursor
sfc-gh-mbarnes
force-pushed
the
release/0.4.0
branch
from
April 24, 2026 20:29
441d924 to
ae6770b
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Release 0.4.0