-
Notifications
You must be signed in to change notification settings - Fork 13
test(cli): add tests for provision and validate commands #613
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||
|---|---|---|---|---|
|
|
@@ -22,10 +22,17 @@ | |||
| "github.com/NVIDIA/holodeck/cmd/cli/cleanup" | ||||
| "github.com/NVIDIA/holodeck/cmd/cli/create" | ||||
| "github.com/NVIDIA/holodeck/cmd/cli/delete" | ||||
| "github.com/NVIDIA/holodeck/cmd/cli/describe" | ||||
|
Check failure on line 25 in cmd/cli/main.go
|
||||
| "github.com/NVIDIA/holodeck/cmd/cli/dryrun" | ||||
| "github.com/NVIDIA/holodeck/cmd/cli/get" | ||||
|
Check failure on line 27 in cmd/cli/main.go
|
||||
|
||||
| "github.com/NVIDIA/holodeck/cmd/cli/get" |
Check failure on line 31 in cmd/cli/main.go
GitHub Actions / Build
cannot find module providing package github.com/NVIDIA/holodeck/cmd/cli/scp: import lookup disabled by -mod=vendor
Copilot
AI
Feb 4, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This import references a package "github.com/NVIDIA/holodeck/cmd/cli/scp" that does not appear to exist in the codebase. The command is registered on line 122 but the package is missing.
| "github.com/NVIDIA/holodeck/cmd/cli/scp" |
Check failure on line 32 in cmd/cli/main.go
GitHub Actions / Build
cannot find module providing package github.com/NVIDIA/holodeck/cmd/cli/ssh: import lookup disabled by -mod=vendor
Copilot
AI
Feb 4, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This import references a package "github.com/NVIDIA/holodeck/cmd/cli/ssh" that does not appear to exist in the codebase. The command is registered on line 123 but the package is missing.
| "github.com/NVIDIA/holodeck/cmd/cli/ssh" |
Check failure on line 34 in cmd/cli/main.go
GitHub Actions / Build
cannot find module providing package github.com/NVIDIA/holodeck/cmd/cli/update: import lookup disabled by -mod=vendor
Copilot
AI
Feb 4, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This import references a package "github.com/NVIDIA/holodeck/cmd/cli/update" that does not appear to exist in the codebase. The command is registered on line 125 but the package is missing.
| "github.com/NVIDIA/holodeck/cmd/cli/update" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This import references a package "github.com/NVIDIA/holodeck/cmd/cli/describe" that does not appear to exist in the codebase. The command is registered on line 116 but the package is missing.