mirror of
https://github.com/apache/superset.git
synced 2026-04-17 07:05:04 +00:00
[Build] Collect frontend code coverage from Cypress tests (#9555)
* build: collect code coverage from Cypress Collect frontend code coverage reports from Cypress tests and add proper tagging for all tests. * Fix bash script lint error from shellcheck * Revert Cypress to 4.3.0 to see if it fixes a failing test
This commit is contained in:
42
.github/workflows/superset-e2e.yml
vendored
42
.github/workflows/superset-e2e.yml
vendored
@@ -7,7 +7,7 @@ jobs:
|
||||
name: Cypress
|
||||
runs-on: ubuntu-18.04
|
||||
strategy:
|
||||
fail-fast: false
|
||||
fail-fast: true
|
||||
matrix:
|
||||
browser: ['chrome']
|
||||
env:
|
||||
@@ -17,7 +17,6 @@ jobs:
|
||||
postgresql+psycopg2://superset:superset@127.0.0.1:15432/superset
|
||||
PYTHONPATH: ${{ github.workspace }}
|
||||
REDIS_PORT: 16379
|
||||
CI: github-actions
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
services:
|
||||
postgres:
|
||||
@@ -40,42 +39,19 @@ jobs:
|
||||
python-version: '3.6'
|
||||
|
||||
- name: Install dependencies
|
||||
uses: apache-superset/cached-dependencies@ddf7d7f
|
||||
uses: apache-superset/cached-dependencies@adc6f73
|
||||
with:
|
||||
# Run commands in parallel does help initial installation without cache
|
||||
parallel: true
|
||||
run: |
|
||||
npm-install && npm-build
|
||||
npm-install && build-instrumented-assets
|
||||
pip-install && setup-postgres && testdata
|
||||
cypress-install
|
||||
|
||||
- name: Cypress run all
|
||||
- name: Run Cypress
|
||||
uses: apache-superset/cached-dependencies@adc6f73
|
||||
env:
|
||||
CYPRESS_GROUP: Default
|
||||
CYPRESS_PATH: 'cypress/integration/*/*'
|
||||
run: |
|
||||
# Start Flask and run Cypress
|
||||
|
||||
# --no-debugger means disable the interactive debugger on the 500 page
|
||||
# so errors can print to stderr.
|
||||
flask run --no-debugger --with-threads -p 8081 &
|
||||
|
||||
sleep 3 # wait for the Flask app to start
|
||||
|
||||
cd ${{ github.workspace }}/superset-frontend/cypress-base/
|
||||
npm run cypress -- run --browser ${{ matrix.browser }} --spec "${{ env.CYPRESS_PATH }}" --record false
|
||||
|
||||
- name: Cypress run SQL Lab (with backend persist)
|
||||
env:
|
||||
SUPERSET_CONFIG: tests.superset_test_config_sqllab_backend_persist
|
||||
CYPRESS_GROUP: Backend persist
|
||||
CYPRESS_PATH: 'cypress/integration/sqllab/*'
|
||||
run: |
|
||||
# Start Flask with alternative config and run Cypress
|
||||
|
||||
killall python # exit the running Flask app
|
||||
flask run --no-debugger --with-threads -p 8081 &
|
||||
sleep 3 # wait for the Flask app to start
|
||||
|
||||
cd ${{ github.workspace }}/superset-frontend/cypress-base/
|
||||
npm run cypress -- run --browser ${{ matrix.browser }} --spec "${{ env.CYPRESS_PATH }}" --record false
|
||||
CYPRESS_BROWSER: ${{ matrix.browser }}
|
||||
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
|
||||
with:
|
||||
run: cypress-run-all
|
||||
|
||||
Reference in New Issue
Block a user