Skip to content

Commit

Permalink
chore: disable caching on e2e tests
Browse files Browse the repository at this point in the history
Signed-off-by: Todd Baert <[email protected]>
  • Loading branch information
toddbaert committed Sep 8, 2023
1 parent b8366a3 commit faddc6b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
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
7 changes: 4 additions & 3 deletions flagd/tests/integration/evaluation_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,10 @@ func TestEvaluation(t *testing.T) {
Name: name,
ScenarioInitializer: integration.InitializeEvaluationScenario(providerOptions...),
Options: &godog.Options{
Format: "pretty",
Paths: []string{"../../../test-harness/features/evaluation.feature"},
TestingT: t, // Testing instance that will run subtests.
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 faddc6b

Please sign in to comment.