From 1d7900ade3e089e2e7fd542373b8e999701ffe8b Mon Sep 17 00:00:00 2001 From: Craig Rueda Date: Tue, 14 Apr 2020 15:56:35 -0700 Subject: [PATCH] Disabling recording in Cypress tests (#9535) * Disabling recording in Cypress tests * Removing --group --ci-build-id --- .github/workflows/superset-e2e.yml | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/.github/workflows/superset-e2e.yml b/.github/workflows/superset-e2e.yml index 0e1ecfa46aed4..a093f828016a8 100644 --- a/.github/workflows/superset-e2e.yml +++ b/.github/workflows/superset-e2e.yml @@ -22,7 +22,6 @@ jobs: REDIS_PORT: 16379 CI: github-actions GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }} services: postgres: image: postgres:10-alpine @@ -67,10 +66,7 @@ jobs: 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 --group "${{ env.CYPRESS_GROUP }}" \ - --ci-build-id ${{ github.event_name }}-${{ github.run_id }} + npm run cypress -- run --browser ${{ matrix.browser }} --spec "${{ env.CYPRESS_PATH }}" --record false - name: Cypress run SQL Lab (with backend persist) env: @@ -85,7 +81,4 @@ jobs: 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 --group "${{ env.CYPRESS_GROUP }}" \ - --ci-build-id ${{ github.event_name }}-${{ github.run_id }} + npm run cypress -- run --browser ${{ matrix.browser }} --spec "${{ env.CYPRESS_PATH }}" --record false