We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ebb543d commit 16dd21eCopy full SHA for 16dd21e
.github/workflows/build.yaml
@@ -137,4 +137,4 @@ jobs:
137
run: ./bin/flagd start -f file:${{ github.workspace }}/test-harness/symlink_testing-flags.json &
138
139
- name: Run evaluation test suite
140
- run: go test -cover ./flagd/tests/integration -run TestEvaluation
+ run: go clean -testcache && go test -cover ./flagd/tests/integration -run TestEvaluation
flagd/tests/integration/evaluation_test.go
@@ -31,6 +31,7 @@ func TestEvaluation(t *testing.T) {
31
Format: "pretty",
32
Paths: []string{"../../../test-harness/features/evaluation.feature"},
33
TestingT: t, // Testing instance that will run subtests.
34
+ Strict: true,
35
},
36
}
37
0 commit comments