forgejo: remove SSH DSA test skips

Tests are no longer valid now that https://codeberg.org/forgejo/forgejo/pulls/4833 is merged into 10.x and backported to 7.x
This commit is contained in:
Chris Moultrie
2025-03-21 12:50:00 -04:00
parent cb9bd5e787
commit e4b383b2a6
+1 -2
View File
@@ -119,12 +119,11 @@ buildGoModule rec {
checkFlags =
let
skippedTests = [
"Test_SSHParsePublicKey/dsa-1024/SSHKeygen" # dsa-1024 is deprecated in openssh and requires opting-in at compile time
"Test_calcFingerprint/dsa-1024/SSHKeygen" # dsa-1024 is deprecated in openssh and requires opting-in at compile time
"TestPassword" # requires network: api.pwnedpasswords.com
"TestCaptcha" # requires network: hcaptcha.com
"TestDNSUpdate" # requires network: release.forgejo.org
"TestMigrateWhiteBlocklist" # requires network: gitlab.com (DNS)
"TestURLAllowedSSH/Pushmirror_URL" # requires network git.gay (DNS)
];
in
[ "-skip=^${builtins.concatStringsSep "$|^" skippedTests}$" ];