Skip to content

Commit

Permalink
feat: boostrapping tests should compile (#1269)
Browse files Browse the repository at this point in the history
Certain targets like go actually need compilation to have run for
`speakeasy test` to work. I also generally changed my mind and don't
think it's bad to compile here.
  • Loading branch information
ryan-timothy-albert authored Feb 19, 2025
1 parent 867331e commit 30f1882
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/run/workflow.go
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ func WithTarget(target string) Opt {
func WithBoostrapTests() Opt {
return func(w *Workflow) {
w.BoostrapTests = true
w.ShouldCompile = false
w.ShouldCompile = true
w.SkipTesting = true
w.SkipVersioning = true
}
Expand Down

0 comments on commit 30f1882

Please sign in to comment.