Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
386 changes: 97 additions & 289 deletions .cursor/rules/package_filtering_process.mdc

Large diffs are not rendered by default.

3 changes: 0 additions & 3 deletions cmd/validate/image_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,6 @@ import (
func TestEvaluatorLifecycle(t *testing.T) {
noEvaluators := 100

// Clear the download cache to ensure a clean state for this test
// source.ClearDownloadCache()

ctx := utils.WithFS(context.Background(), afero.NewMemMapFs())
client := fake.FakeClient{}
commonMockClient(&client)
Expand Down
2 changes: 2 additions & 0 deletions cmd/validate/validate.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ import (
"github.com/conforma/cli/internal/input"
"github.com/conforma/cli/internal/policy"
_ "github.com/conforma/cli/internal/rego"
"github.com/conforma/cli/internal/validate/vsa"
)

var ValidateCmd *cobra.Command
Expand All @@ -35,6 +36,7 @@ func init() {
ValidateCmd.AddCommand(validateImageCmd(image.ValidateImage))
ValidateCmd.AddCommand(validateInputCmd(input.ValidateInput))
ValidateCmd.AddCommand(ValidatePolicyCmd(policy.ValidatePolicy))
ValidateCmd.AddCommand(validateVSACmd(vsa.ValidateVSA))
}

func NewValidateCmd() *cobra.Command {
Expand Down
Loading
Loading