Skip to content

Commit

Permalink
Add optional param to run tests over specific directory only.
Browse files Browse the repository at this point in the history
  • Loading branch information
vpodorozh committed Dec 22, 2023
1 parent 7e29915 commit a16c21e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/full-integration-tests.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
name: Integration Tests - Full Test Suite
run-name: ${{ github.actor }} is running Full Integration Test Suite
on:
workflow_dispatch: {}
workflow_dispatch:
inputs:
test_directory:
description: 'Test directory to run integration tests'
type: string
required: false

jobs:
call-workflow:
Expand All @@ -11,3 +16,4 @@ jobs:
with:
repository: ${{ github.repository }}
head: ${{ github.sha }}
test_directory: ${{ github.event.inputs.test_directory }}

0 comments on commit a16c21e

Please sign in to comment.