The GitHub Actions job "Required Checks" on texera.git/fix/filled-area-plot-tolerance has failed. Run started by GitHub user Yicong-Huang (triggered by Yicong-Huang).
Head commit for run: 0ad1a6c64c1f35813a8bf673f1856afe5bdd5c33 / eugenegujing <[email protected]> fix(workflow-operator): make FilledAreaPlot disjoint-group tolerance a true 5% The generated guard computed `tolerance = (len(grouped) // 100) * 5`, which floors to 0 for any chart with fewer than 100 line groups, so a single disjoint line group suppressed the whole chart. Swap the operand order: `(len(grouped) * 5) // 100`. Behavior only changes at 20+ groups; below that both forms correctly give 0. Ride-along cleanups in the same emitted block: hoist the per-group `set(...unique())` into one local, use `is None`, turn the always-true `elif not ...` into `else`, and `break` once the verdict is final. Adds the first tests covering performTableCheck(): 9 assertions on the generated guard plus a runtime boundary test that executes the generated Python (cancels gracefully when pandas/plotly are unavailable). Fixes #7146 Report URL: https://github.com/apache/texera/actions/runs/30592313162 With regards, GitHub Actions via GitBox
