8000 feat: Read params from file for template/workspace creation by AbhineetJain · Pull Request #1541 · coder/coder · GitHub
[go: up one dir, main page]

Skip to content

feat: Read params from file for template/workspace creation #1541

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

Merged
merged 13 commits into from
May 20, 2022
Merged
Prev Previous commit
Next Next commit
Add comments for the hotfix
  • Loading branch information
AbhineetJain committed May 20, 2022
commit 74989acc64f4d8007dfef85f6829ace04c1ff805
2 changes: 2 additions & 0 deletions cli/parameter_internal_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ func TestCreateParameterMapFromFile(t *testing.T) {
})
}

// Need this for Windows because of a known issue with Go:
// https://github.com/golang/go/issues/52986
func removeTmpDirUntilSuccess(t *testing.T, tempDir string) {
t.Helper()
t.Cleanup(func() {
Expand Down
2 changes: 2 additions & 0 deletions cli/templatecreate_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,8 @@ func createTestParseResponse() []*proto.Parse_Response {
}}
}

// Need this for Windows because of a known issue with Go:
// https://github.com/golang/go/issues/52986
func removeTmpDirUntilSuccess(t *testing.T, tempDir string) {
t.Helper()
t.Cleanup(func() {
Expand Down
0