Skip to content

Commit 1680a9c

Browse files
authored
Merge pull request #4399 from vespa-engine/kkraune-patch-1
test_config_path
2 parents e732bd1 + 96915f9 commit 1680a9c

3 files changed

Lines changed: 4 additions & 5 deletions

File tree

.github/workflows/verify-guides-large.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,4 @@ jobs:
2121
large:
2222
uses: ./.github/workflows/verify-guides.yml
2323
with:
24-
test-config-path: "test/_test_config-large.yml"
25-
24+
test_config_path: "test/_test_config-large.yml"

.github/workflows/verify-guides-small.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ jobs:
2424
small:
2525
uses: ./.github/workflows/verify-guides.yml
2626
with:
27-
test-config-path: "test/_test_config.yml"
27+
test_config_path: "test/_test_config.yml"

.github/workflows/verify-guides.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Verify Guides
33
on:
44
workflow_call:
55
inputs:
6-
test-config-path:
6+
test_config_path:
77
description: |
88
The path to the test configuration file, relative to the repository root.
99
@@ -41,4 +41,4 @@ jobs:
4141
4242
- name: run-tests
4343
run: |
44-
./test/test.py -c "${{ github.event.inputs.test-config-path }}" -w $GITHUB_WORKSPACE
44+
./test/test.py -c "${{ inputs.test_config_path }}" -w $GITHUB_WORKSPACE

0 commit comments

Comments
 (0)