Skip to content

Commit 16dd21e

Browse files
authored
chore: disable caching on integration tests (#899)
disable caching on integration tests Signed-off-by: Todd Baert <[email protected]>
1 parent ebb543d commit 16dd21e

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/build.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,4 +137,4 @@ jobs:
137137
run: ./bin/flagd start -f file:${{ github.workspace }}/test-harness/symlink_testing-flags.json &
138138

139139
- name: Run evaluation test suite
140-
run: go test -cover ./flagd/tests/integration -run TestEvaluation
140+
run: go clean -testcache && go test -cover ./flagd/tests/integration -run TestEvaluation

flagd/tests/integration/evaluation_test.go

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ func TestEvaluation(t *testing.T) {
3131
Format: "pretty",
3232
Paths: []string{"../../../test-harness/features/evaluation.feature"},
3333
TestingT: t, // Testing instance that will run subtests.
34+
Strict: true,
3435
},
3536
}
3637

0 commit comments

Comments
 (0)