Skip to content

Commit

Permalink
chore: disable caching on integration tests (#899)
Browse files Browse the repository at this point in the history
disable caching on integration tests

Signed-off-by: Todd Baert <todd.baert@dynatrace.com>
  • Loading branch information
toddbaert authored Sep 8, 2023
1 parent ebb543d commit 16dd21e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -137,4 +137,4 @@ jobs:
run: ./bin/flagd start -f file:${{ github.workspace }}/test-harness/symlink_testing-flags.json &

- name: Run evaluation test suite
run: go test -cover ./flagd/tests/integration -run TestEvaluation
run: go clean -testcache && go test -cover ./flagd/tests/integration -run TestEvaluation
1 change: 1 addition & 0 deletions flagd/tests/integration/evaluation_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ func TestEvaluation(t *testing.T) {
Format: "pretty",
Paths: []string{"../../../test-harness/features/evaluation.feature"},
TestingT: t, // Testing instance that will run subtests.
Strict: true,
},
}

Expand Down

0 comments on commit 16dd21e

Please sign in to comment.