This is an automated email from the ASF dual-hosted git repository.
ccwilliams pushed a change to branch chris--sqllab-cypress
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git.
discard 500e7dd [cypress][sqllab] add route wait in sourcepanel for flakiness
discard 67af62e [cypress][sqllab] fix wait syntax
discard 149033c [cypress][sqllab] wait for savedquery api response
discard a5f715c [cypress][sqllab] try 1s wait :O
discard ed13644 [cypress][sqllab] unnest, use visit for href
discard d2ef743 [cypress][sqllab] wait for saved query to load
discard a7e54d1 [cypress][sqllab] try force click
discard ca0b1a0 [cypress][sqllab] remove nested assertions where possible,
update to single test index file
discard e93470f [cypress] add tests for SQL Lab tabs
discard e0a81ca [cypress] add selectors/
discard b51ebb5 [cypress] add tests for SQL Lab query panel
discard ce87da1 [cypress] add sqllab/sourcePanel integration tests
add df341ff Sorting tables by "modified" is broken (#6027)
add 8fe6f12 refer to default color scheme in colorpickercontrol instead
of pointing to specific scheme (#6031)
add 160e477 Deprecate support for Python < 3.6 (#5985)
add adfe9e3 [tablemodelview] Fixing JSON api/read serializable issue
(#6023)
add 93fe453 remove redundant mysql (#6049)
add 06e029f fix for annotation layer bug (#6047)
add 96952d0 Search queries when enter is pressed (#6043)
add 6282edd Revert old precision formatters (#6056)
add 9dcf8e1 Upgrade flask-appbuilder to latest. (#6030)
add 1ee08fc [select-star] Adding optional schema to view (#6051)
add fa208f0 [cypress] add sqllab/sourcePanel integration tests
add bcfd477 [cypress] add tests for SQL Lab query panel
add 4df1db9 [cypress] add selectors/
add 845d625 [cypress] add tests for SQL Lab tabs
add bc37413 [cypress][sqllab] remove nested assertions where possible,
update to single test index file
add 49eadea [cypress][sqllab] try force click
add eab9268 [cypress][sqllab] wait for saved query to load
add b73e10c [cypress][sqllab] unnest, use visit for href
add 154ff6f [cypress][sqllab] try 1s wait :O
add 54e0ae3 [cypress][sqllab] wait for savedquery api response
add 44e6f23 [cypress][sqllab] fix wait syntax
add b489fd1 [cypress][sqllab] add route wait in sourcepanel for flakiness
add 54255d1 [cypress] use *.test.js pattern for tests
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (500e7dd)
\
N -- N -- N refs/heads/chris--sqllab-cypress (54255d1)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.travis.yml | 15 ++-------------
UPDATING.md | 8 ++++++++
docs/installation.rst | 7 ++++---
requirements.txt | 2 +-
setup.py | 8 +++++---
superset/assets/cypress.json | 2 +-
.../{dashboard_tests.js => dashboard.test.js} | 0
.../explore/{control_tests.js => control.test.js} | 0
.../explore/visualizations/{_area.js => area.js} | 0
.../{_big_number.js => big_number.js} | 0
.../{_big_number_total.js => big_number_total.js} | 0
.../visualizations/{_box_plot.js => box_plot.js} | 0
.../visualizations/{_bubble.js => bubble.js} | 0
.../visualizations/{_compare.js => compare.js} | 0
.../visualizations/{_dist_bar.js => dist_bar.js} | 0
.../visualizations/{_dual_line.js => dual_line.js} | 0
.../visualizations/{_histogram.js => histogram.js} | 0
.../visualizations/{all.js => index.test.js} | 0
.../explore/visualizations/{_line.js => line.js} | 0
.../explore/visualizations/{_pie.js => pie.js} | 0
.../{_pivot_table.js => pivot_table.js} | 0
.../visualizations/{_sankey.js => sankey.js} | 0
.../visualizations/{_sunburst.js => sunburst.js} | 0
.../explore/visualizations/{_table.js => table.js} | 0
.../visualizations/{_treemap.js => treemap.js} | 0
.../visualizations/{_world_map.js => world_map.js} | 0
.../integration/sqllab/{_query.js => query.js} | 0
.../sqllab/{_sourcePanel.js => sourcePanel.js} | 0
.../integration/sqllab/{_tabs.js => tabs.js} | 0
.../explore/components/ColorPickerControl_spec.jsx | 3 +++
.../spec/javascripts/sqllab/QuerySearch_spec.jsx | 15 +++++++++++----
.../assets/src/SqlLab/components/QuerySearch.jsx | 7 +++++++
.../explore/components/controls/AnnotationLayer.jsx | 2 +-
.../components/controls/ColorPickerControl.jsx | 5 ++---
superset/assets/src/modules/colors.js | 4 ----
.../assets/src/visualizations/Sunburst/Sunburst.js | 4 ++--
superset/connectors/sqla/models.py | 4 ++++
superset/connectors/sqla/views.py | 3 ++-
superset/db_engine_specs.py | 18 ++++++++++++++++--
...19ee0e3_fix_wrong_constraint_on_table_columns.py | 5 +++--
.../versions/3b626e2a6783_sync_db_with_models.py | 21 ++++++---------------
superset/models/helpers.py | 2 +-
superset/security.py | 2 +-
superset/templates/appbuilder/navbar_right.html | 2 +-
superset/templates/superset/ajah.html | 1 -
superset/views/base.py | 4 ++--
superset/views/core.py | 17 +++++++++++------
superset/views/utils.py | 2 +-
tests/core_tests.py | 5 +++++
tox.ini | 5 ++---
50 files changed, 102 insertions(+), 71 deletions(-)
rename superset/assets/cypress/integration/dashboard/{dashboard_tests.js =>
dashboard.test.js} (100%)
rename superset/assets/cypress/integration/explore/{control_tests.js =>
control.test.js} (100%)
rename superset/assets/cypress/integration/explore/visualizations/{_area.js =>
area.js} (100%)
rename
superset/assets/cypress/integration/explore/visualizations/{_big_number.js =>
big_number.js} (100%)
rename
superset/assets/cypress/integration/explore/visualizations/{_big_number_total.js
=> big_number_total.js} (100%)
rename
superset/assets/cypress/integration/explore/visualizations/{_box_plot.js =>
box_plot.js} (100%)
rename superset/assets/cypress/integration/explore/visualizations/{_bubble.js
=> bubble.js} (100%)
rename superset/assets/cypress/integration/explore/visualizations/{_compare.js
=> compare.js} (100%)
rename
superset/assets/cypress/integration/explore/visualizations/{_dist_bar.js =>
dist_bar.js} (100%)
rename
superset/assets/cypress/integration/explore/visualizations/{_dual_line.js =>
dual_line.js} (100%)
rename
superset/assets/cypress/integration/explore/visualizations/{_histogram.js =>
histogram.js} (100%)
rename superset/assets/cypress/integration/explore/visualizations/{all.js =>
index.test.js} (100%)
rename superset/assets/cypress/integration/explore/visualizations/{_line.js =>
line.js} (100%)
rename superset/assets/cypress/integration/explore/visualizations/{_pie.js =>
pie.js} (100%)
rename
superset/assets/cypress/integration/explore/visualizations/{_pivot_table.js =>
pivot_table.js} (100%)
rename superset/assets/cypress/integration/explore/visualizations/{_sankey.js
=> sankey.js} (100%)
rename
superset/assets/cypress/integration/explore/visualizations/{_sunburst.js =>
sunburst.js} (100%)
rename superset/assets/cypress/integration/explore/visualizations/{_table.js
=> table.js} (100%)
rename superset/assets/cypress/integration/explore/visualizations/{_treemap.js
=> treemap.js} (100%)
rename
superset/assets/cypress/integration/explore/visualizations/{_world_map.js =>
world_map.js} (100%)
rename superset/assets/cypress/integration/sqllab/{_query.js => query.js}
(100%)
rename superset/assets/cypress/integration/sqllab/{_sourcePanel.js =>
sourcePanel.js} (100%)
rename superset/assets/cypress/integration/sqllab/{_tabs.js => tabs.js} (100%)
delete mode 100644 superset/templates/superset/ajah.html