Skip to content

Commit 349d410

Browse files
chore: Pin FDv2 contract tests to v3.0.0-alpha.3 tag
Replace feat/fdv2 branch reference with v3.0.0-alpha.3 tag for the sdk-test-harness used in FDv2 contract tests. Co-Authored-By: rlamb@launchdarkly.com <rlamb@launchdarkly.com>
1 parent 29d236f commit 349d410

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/actions/contract-tests/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ inputs:
1212
required: false
1313
default: ''
1414
run_fdv2_tests:
15-
description: 'Whether to run contract tests from the feat/fdv2 branch'
15+
description: 'Whether to run contract tests from the v3.0.0-alpha.3 tag'
1616
required: false
1717
default: 'false'
1818

@@ -64,15 +64,15 @@ runs:
6464
shell: bash
6565
run: dotnet ${{ inputs.service_dll_file }} > test-service.log 2>&1 & disown
6666

67-
- name: Clone and run contract tests from feat/fdv2 branch
67+
- name: Clone and run contract tests from v3.0.0-alpha.3 tag
6868
if: inputs.run_fdv2_tests == 'true'
6969
shell: bash
7070
run: |
7171
mkdir -p /tmp/sdk-test-harness
7272
git clone https://github.com/launchdarkly/sdk-test-harness.git /tmp/sdk-test-harness
7373
cp $(dirname ./${{ inputs.service_project_file }})/test-supressions-fdv2.txt /tmp/sdk-test-harness/testharness-suppressions-fdv2.txt
7474
cd /tmp/sdk-test-harness
75-
git checkout feat/fdv2
75+
git checkout v3.0.0-alpha.3
7676
go build -o test-harness .
7777
./test-harness -url http://localhost:8000 -debug -status-timeout=360 --skip-from=testharness-suppressions-fdv2.txt --stop-service-at-end
7878
env:

0 commit comments

Comments
 (0)