We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3c373c commit 179b104Copy full SHA for 179b104
kms/cloudkms/attestation_test.go
@@ -746,6 +746,10 @@ func Test_getKeyType(t *testing.T) {
746
// this package. The current certificate expires on November 16, 2025. We will
747
// need to change it once Marvell changes it.
748
func TestValidateCaviumRoot(t *testing.T) {
749
+ if !time.Now().After(time.Unix(1768460400, 0)) { // retrigger test after Thu Jan 15 2026 07:00:00
750
+ t.Skip("skipping expired Cavium root test until Thu Jan 15 2026 07:00:00 GMT")
751
+ }
752
+
753
root, err := pemutil.ParseCertificate([]byte(caviumRoot))
754
require.NoError(t, err)
755
0 commit comments