Skip to content

Commit

Permalink
test no description
Browse files Browse the repository at this point in the history
  • Loading branch information
mroz22 committed Oct 25, 2024
1 parent e1ccd5b commit 8d74802
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/template-connect-test-params.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ on:
description: "Firmware model for the tests (example: T3T1)"
type: "string"
required: false
testDescription:
description: "A description to make test title more descriptive (example: T3T1-latest)"
type: "string"
required: false
default: ""
# testDescription:
# description: "A description to make test title more descriptive (example: T3T1-latest)"
# type: "string"
# required: false
# default: ""
testRandomizedOrder:
description: "Tests will be run in randomized order"
type: "boolean"
Expand All @@ -46,7 +46,7 @@ on:

jobs:
test:
name: "${{ inputs.testDescription }}"
# name: "${{ inputs.testDescription }}"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/test-connect.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
id: set-matrix-other-devices
run: echo "otherDevicesMatrix=$(node ./scripts/ci/connect-test-matrix-generator.js --model=all --firmware=2-latest --env=node --groups=api --cache_tx=true --transport=Bridge)" >> $GITHUB_OUTPUT

T2T1_latest-fw_api:
PR_check:
needs: [build, set-matrix]
if: github.repository == 'trezor/trezor-suite'
name: ${{ matrix.model }}-${{ matrix.firmware }}
Expand All @@ -109,7 +109,7 @@ jobs:
fail-fast: true # in PRs we don't want to block CI too much so fail fast is enabled
matrix: ${{ fromJson(needs.set-matrix.outputs.dailyMatrix) }}

connect-randomized-order:
randomized:
needs: [build, set-matrix]
# if: github.event_name == 'schedule' && github.repository == 'trezor/trezor-suite'
name: randomized-${{ matrix.name }}
Expand All @@ -118,7 +118,7 @@ jobs:
testPattern: ${{ matrix.groups.pattern }}
includeFilter: ${{ matrix.groups.includeFilter }}
testsFirmware: ${{ matrix.firmware }}
testDescription: ${{ matrix.env }} ${{ matrix.groups.name }}
# testDescription: ${{ matrix.env }} ${{ matrix.groups.name }}
cache_tx: ${{ matrix.cache_tx }}
transport: ${{ matrix.transport }}
testEnv: ${{ matrix.env }}
Expand All @@ -128,7 +128,7 @@ jobs:
fail-fast: false
matrix: ${{ fromJson(needs.set-matrix.outputs.dailyMatrix) }}

T2T1_legacy-fw:
legacy-fw:
needs: [build, set-matrix]
# if: github.event_name == 'schedule' && github.repository == 'trezor/trezor-suite'
name: T2T1_legacy-fw
Expand All @@ -137,7 +137,7 @@ jobs:
testPattern: ${{ matrix.groups.pattern }}
includeFilter: ${{ matrix.groups.includeFilter }}
testsFirmware: ${{ matrix.firmware }}
testDescription: ${{ matrix.env }} ${{ matrix.groups.name }}
# testDescription: ${{ matrix.env }} ${{ matrix.groups.name }}
cache_tx: ${{ matrix.cache_tx }}
transport: ${{ matrix.transport }}
testEnv: ${{ matrix.env }}
Expand All @@ -146,7 +146,7 @@ jobs:
fail-fast: false
matrix: ${{ fromJson(needs.set-matrix.outputs.legacyFirmwareMatrix) }}

T2T1_canary-fw:
canary-fw:
needs: [build, set-matrix]
# if: github.event_name == 'schedule' && github.repository == 'trezor/trezor-suite'
name: T2T1_canary-fw
Expand All @@ -156,7 +156,7 @@ jobs:
includeFilter: ${{ matrix.groups.includeFilter }}
testsFirmware: ${{ matrix.firmware }}
# testDescription: ${{ matrix.env }} ${{ matrix.groups.name }}
testDescription: Foo bar
# testDescription: Foo bar
cache_tx: ${{ matrix.cache_tx }}
transport: ${{ matrix.transport }}
testEnv: ${{ matrix.env }}
Expand All @@ -174,7 +174,7 @@ jobs:
testPattern: ${{ matrix.groups.pattern }}
includeFilter: ${{ matrix.groups.includeFilter }}
testsFirmware: ${{ matrix.firmware }}
testDescription: ${{ matrix.env }} ${{ matrix.groups.name }}
# testDescription: ${{ matrix.env }} ${{ matrix.groups.name }}
cache_tx: ${{ matrix.cache_tx }}
transport: ${{ matrix.transport }}
testEnv: ${{ matrix.env }}
Expand Down

0 comments on commit 8d74802

Please sign in to comment.