summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows
diff options
context:
space:
mode:
authorDavid Lönnhager <david.l@mullvad.net>2024-08-15 16:34:26 +0200
committerDavid Lönnhager <david.l@mullvad.net>2024-08-15 16:34:26 +0200
commitcb1df6aef6a3f09123f7ec15611188a245853e0d (patch)
tree19c62571b8b9d16b68d3ee0e0ab240ee094b2256 /.github/workflows
parente804454a43d4f0f8756f3eacc47f12ef8dba8838 (diff)
parent65b0b4853c9dc635aee84dfc08755a1dde981486 (diff)
downloadmullvadvpn-cb1df6aef6a3f09123f7ec15611188a245853e0d.tar.xz
mullvadvpn-cb1df6aef6a3f09123f7ec15611188a245853e0d.zip
Merge branch 'test-add-test-filter'
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/desktop-e2e.yml8
1 files changed, 8 insertions, 0 deletions
diff --git a/.github/workflows/desktop-e2e.yml b/.github/workflows/desktop-e2e.yml
index 9fe7a328c9..e1c6595091 100644
--- a/.github/workflows/desktop-e2e.yml
+++ b/.github/workflows/desktop-e2e.yml
@@ -20,6 +20,11 @@ on:
default: ''
required: false
type: string
+ tests:
+ description: "Tests to run (defaults to all if empty)"
+ default: ''
+ required: false
+ type: string
jobs:
prepare-matrices:
name: Prepare virtual machines
@@ -151,6 +156,7 @@ jobs:
shell: bash -ieo pipefail {0}
run: |
git fetch --tags --force
+ export TEST_FILTERS="${{ github.event.inputs.tests }}"
./test/scripts/ci-runtests.sh ${{ matrix.os }}
- uses: actions/upload-artifact@v3
if: '!cancelled()'
@@ -226,6 +232,7 @@ jobs:
shell: bash -ieo pipefail {0}
run: |
git fetch --tags --force
+ export TEST_FILTERS="${{ github.event.inputs.tests }}"
./test/scripts/ci-runtests.sh ${{ matrix.os }}
- uses: actions/upload-artifact@v3
if: '!cancelled()'
@@ -297,6 +304,7 @@ jobs:
shell: bash -ieo pipefail {0}
run: |
git fetch --tags --force
+ export TEST_FILTERS="${{ github.event.inputs.tests }}"
./test/scripts/ci-runtests.sh ${{ matrix.os }}
- uses: actions/upload-artifact@v3
if: '!cancelled()'