Skip to content

Using setup.py nosetests to run tests#202

Merged
mistercrunch merged 1 commit into
masterfrom
better_tests
Mar 28, 2016
Merged

Using setup.py nosetests to run tests#202
mistercrunch merged 1 commit into
masterfrom
better_tests

Conversation

@mistercrunch
Copy link
Copy Markdown
Member

No description provided.

@landscape-bot
Copy link
Copy Markdown

Code Health
Code quality remained the same when pulling 301dce2 on airbnb:better_tests into 6dce6df on airbnb:master.

@mistercrunch mistercrunch merged commit 4a0ea5f into master Mar 28, 2016
@mistercrunch mistercrunch deleted the better_tests branch March 28, 2016 02:55
graceguo-supercat pushed a commit to graceguo-supercat/superset that referenced this pull request Oct 4, 2021
BREAKING CHANGE: No longer accept chartProps as a single prop in <SuperChart>. Developers must specify each field in chartProps individually.
zhaoyongjie pushed a commit to zhaoyongjie/incubator-superset that referenced this pull request Nov 17, 2021
BREAKING CHANGE: No longer accept chartProps as a single prop in <SuperChart>. Developers must specify each field in chartProps individually.
zhaoyongjie pushed a commit to zhaoyongjie/incubator-superset that referenced this pull request Nov 24, 2021
BREAKING CHANGE: No longer accept chartProps as a single prop in <SuperChart>. Developers must specify each field in chartProps individually.
zhaoyongjie pushed a commit to zhaoyongjie/incubator-superset that referenced this pull request Nov 25, 2021
BREAKING CHANGE: No longer accept chartProps as a single prop in <SuperChart>. Developers must specify each field in chartProps individually.
zhaoyongjie pushed a commit to zhaoyongjie/incubator-superset that referenced this pull request Nov 26, 2021
BREAKING CHANGE: No longer accept chartProps as a single prop in <SuperChart>. Developers must specify each field in chartProps individually.
@mistercrunch mistercrunch added 🏷️ bot A label used by `supersetbot` to keep track of which PR where auto-tagged with release labels 🚢 0.8.5 First shipped in 0.8.5 labels Feb 19, 2024
mikebridge pushed a commit to mikebridge/superset that referenced this pull request Apr 28, 2026
Three fixes from kgabryje's review on PR apache#39641:

1. TextAreaControl IME guard double-fire on Firefox/Edge. Per W3C
   uievents apache#202, Firefox/Edge fire a synthetic onChange after
   compositionend with the committed value. Add a one-shot
   `justComposed` flag, cleared on the next change, so the committed
   value isn't propagated twice on those browsers.

2. DatasourceEditor onBlur defeated debounce for intra-form
   navigation. React onBlur bubbles, so tabbing between fields inside
   the container fired the synchronous flush on every focus change.
   Guard with `e.relatedTarget` so flushValidation only fires when
   focus actually leaves the container.

3. Drop `destroyInactiveTabPane`. The lazy-mount benefit isn't worth
   the UX regression of losing CollectionTable local state (search
   term, pagination, expanded rows) on every tab switch. The remaining
   fixes (debounce, memoised derived arrays, stable handler identity,
   IME guards) carry the perf wins.

The .cancel()-vs-.flush() review point requires a deeper refactor of
validate() to expose a sync compute path that doesn't depend on the
component's setState. Deferred to a follow-up commit.

Tests: 51/51 across 6 suites pass.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
mikebridge pushed a commit to mikebridge/superset that referenced this pull request Apr 28, 2026
Three fixes from kgabryje's review on PR apache#39641:

1. TextAreaControl IME guard double-fire on Firefox/Edge. Per W3C
   uievents apache#202, Firefox/Edge fire a synthetic onChange after
   compositionend with the committed value. Add a one-shot
   `justComposed` flag, cleared on the next change, so the committed
   value isn't propagated twice on those browsers.

2. DatasourceEditor onBlur defeated debounce for intra-form
   navigation. React onBlur bubbles, so tabbing between fields inside
   the container fired the synchronous flush on every focus change.
   Guard with `e.relatedTarget` so flushValidation only fires when
   focus actually leaves the container.

3. Drop `destroyInactiveTabPane`. The lazy-mount benefit isn't worth
   the UX regression of losing CollectionTable local state (search
   term, pagination, expanded rows) on every tab switch. The remaining
   fixes (debounce, memoised derived arrays, stable handler identity,
   IME guards) carry the perf wins.

The .cancel()-vs-.flush() review point requires a deeper refactor of
validate() to expose a sync compute path that doesn't depend on the
component's setState. Deferred to a follow-up commit.

Tests: 51/51 across 6 suites pass.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
mikebridge pushed a commit to mikebridge/superset that referenced this pull request Apr 28, 2026
Three fixes from kgabryje's review on PR apache#39641:

1. TextAreaControl IME guard double-fire on Firefox/Edge. Per W3C
   uievents apache#202, Firefox/Edge fire a synthetic onChange after
   compositionend with the committed value. Add a one-shot
   `justComposed` flag, cleared on the next change, so the committed
   value isn't propagated twice on those browsers.

2. DatasourceEditor onBlur defeated debounce for intra-form
   navigation. React onBlur bubbles, so tabbing between fields inside
   the container fired the synchronous flush on every focus change.
   Guard with `e.relatedTarget` so flushValidation only fires when
   focus actually leaves the container.

3. Drop `destroyInactiveTabPane`. The lazy-mount benefit isn't worth
   the UX regression of losing CollectionTable local state (search
   term, pagination, expanded rows) on every tab switch. The remaining
   fixes (debounce, memoised derived arrays, stable handler identity,
   IME guards) carry the perf wins.

The .cancel()-vs-.flush() review point requires a deeper refactor of
validate() to expose a sync compute path that doesn't depend on the
component's setState. Deferred to a follow-up commit.

Tests: 51/51 across 6 suites pass.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
mikebridge pushed a commit to mikebridge/superset that referenced this pull request Apr 29, 2026
Three fixes from kgabryje's review on PR apache#39641:

1. TextAreaControl IME guard double-fire on Firefox/Edge. Per W3C
   uievents apache#202, Firefox/Edge fire a synthetic onChange after
   compositionend with the committed value. Add a one-shot
   `justComposed` flag, cleared on the next change, so the committed
   value isn't propagated twice on those browsers.

2. DatasourceEditor onBlur defeated debounce for intra-form
   navigation. React onBlur bubbles, so tabbing between fields inside
   the container fired the synchronous flush on every focus change.
   Guard with `e.relatedTarget` so flushValidation only fires when
   focus actually leaves the container.

3. Drop `destroyInactiveTabPane`. The lazy-mount benefit isn't worth
   the UX regression of losing CollectionTable local state (search
   term, pagination, expanded rows) on every tab switch. The remaining
   fixes (debounce, memoised derived arrays, stable handler identity,
   IME guards) carry the perf wins.

The .cancel()-vs-.flush() review point requires a deeper refactor of
validate() to expose a sync compute path that doesn't depend on the
component's setState. Deferred to a follow-up commit.

Tests: 51/51 across 6 suites pass.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
qfcwell pushed a commit to qfcwell/superset that referenced this pull request May 12, 2026
Using setup.py nosetests to run tests
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

🏷️ bot A label used by `supersetbot` to keep track of which PR where auto-tagged with release labels 🚢 0.8.5 First shipped in 0.8.5

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants