Skip to content
Merged
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
chore: skip Azure TestExpiresSoon
Adds some context to the test skip so it can be removed or enabled in the future.
  • Loading branch information
kylecarbs committed May 28, 2024
commit cd8e3e7dc8645fd625b3b96e5d85e7328d6f6c1f
4 changes: 4 additions & 0 deletions coderd/azureidentity/azureidentity_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,10 @@ func TestValidate(t *testing.T) {

func TestExpiresSoon(t *testing.T) {
t.Parallel()
// TODO (@kylecarbs): It's unknown why Microsoft does not have new certificates live...
// The certificate is automatically fetched if it's not found in our database,
// so in a worst-case scenario expired certificates will only impact 100% airgapped users.
t.Skip()
const threshold = 1

for _, c := range azureidentity.Certificates {
Expand Down