Skip to content

Commit

Permalink
test(extension): add smoke tests info
Browse files Browse the repository at this point in the history
  • Loading branch information
oldGreg5 committed Jul 15, 2024
1 parent d4fc171 commit 9b0efda
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
3 changes: 0 additions & 3 deletions .github/shared/build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,6 @@ runs:
echo "Build artifact found and downloaded"
echo "build_exists=true" >> $GITHUB_OUTPUT
fi
- name: Setup upterm session
if: always()
uses: lhotari/action-upterm@v1
- name: Configure Yarn to use GitHub Packages
if: steps.check-build-exists.outputs.build_exists == 'false'
run: |
Expand Down
10 changes: 6 additions & 4 deletions .github/workflows/e2e-tests-linux-split.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches:
- 'release/**'
- '*lw-10859-e2e-enhance'
workflow_dispatch:
inputs:
browser:
Expand Down Expand Up @@ -34,9 +35,9 @@ on:
type: boolean
description: 'Run only smoke tests'
required: true
default: false
default: true

run-name: "E2E | os: Linux | browser: ${{ github.event.inputs.browser || 'chrome' }} | network: ${{ github.event.inputs.network }} | #${{ github.run_number }}"
run-name: "E2E | os: Linux | browser: ${{ github.event.inputs.browser || 'chrome' }} | network: ${{ github.event.inputs.network }} | #${{ github.run_number }} | smoke only: ${{ github.event.inputs.smoke_only }}"

env:
BROWSER: ${{ github.event.inputs.browser || 'chrome' }}
Expand Down Expand Up @@ -87,7 +88,7 @@ jobs:
strategy:
fail-fast: false
matrix:
batch: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16]
batch: [1]
runs-on: ${{ needs.prereq.outputs.runner }}
needs: [prereq, build-dist-version]
steps:
Expand Down Expand Up @@ -123,6 +124,7 @@ jobs:
env=${NETWORK}
browser=${BROWSER}
platform=Linux
smoke only=${{ needs.prereq.outputs.smoke_only }}
" > environment.properties
- name: Publish allure report to S3
uses: andrcuns/allure-publish-action@v2.6.0
Expand All @@ -148,7 +150,7 @@ jobs:
env:
SLACK_COLOR: "${{ contains(needs.*.result, 'failure') && 'failure' || 'good' }}"
SLACK_ICON_EMOJI: ':lace:'
SLACK_MESSAGE: 'https://${{ secrets.E2E_REPORTS_USER }}:${{ secrets.E2E_REPORTS_PASSWORD }}@${{ secrets.E2E_REPORTS_URL }}/all/linux/${{ env.BROWSER }}/${{ env.RUN }}/index.html | browser: ${{ env.BROWSER }} | network: ${{ env.NETWORK }} | platform: linux'
SLACK_MESSAGE: 'https://${{ secrets.E2E_REPORTS_USER }}:${{ secrets.E2E_REPORTS_PASSWORD }}@${{ secrets.E2E_REPORTS_URL }}/all/linux/${{ env.BROWSER }}/${{ env.RUN }}/index.html | browser: ${{ env.BROWSER }} | network: ${{ env.NETWORK }} | platform: linux | smoke only: ${{ github.event.inputs.smoke_only }}'
SLACK_TITLE: 'Test automation results :rocket:'
SLACK_USERNAME: lace-qa-bot
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
Expand Down

0 comments on commit 9b0efda

Please sign in to comment.