- Notifications
You must be signed in to change notification settings - Fork1k
Description
We're leveragingterraform
for some of our unit tests, and ended up needing to bump up a timeout - this is the PR where the timeout was bumped up:#149
And an example failure log:
https://github.com/coder/coder/runs/5043435263?check_suite_focus=true#step:7:32
The challenge is that the current tests useterraform
and need to wait for the provisioner job to complete - butterraform
time to execution can vary a bit on our CI env, even for a very minimal HCL script.
An alternate approach we could consider is using anecho
provisioner - a provisioner that just emits some output, and use that for these unit tests. In that case, though, we'd still want a test that exercises ourterraform
flow - so we'd need a category of integration tests that could take a bit more execution time.