Skip to content

Commit

Permalink
fix test group
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-bli committed Aug 21, 2024
1 parent 99792d4 commit 13e85d6
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ lazy val root = (project in file("."))
inConfig(CodeVerificationTests)(Defaults.testTasks),
CodeVerificationTests / testOptions += Tests.Filter(isCodeVerification),
// default test
Test / testOptions += Tests.Filter(isRemainingTest),
// Release settings
// usePgpKeyHex(Properties.envOrElse("GPG_SIGNATURE", "12345")),
Global / pgpPassphrase := Properties.envOrNone("GPG_KEY_PASSPHRASE").map(_.toCharArray),
Expand Down Expand Up @@ -100,5 +99,5 @@ lazy val CodeVerificationTests = config("CodeVerificationTests") extend Test
// FIPS Tests

// other Tests
def isRemainingTest(name: String): Boolean = name.endsWith("JavaAPISuite")
// ! isCodeVerification(name)
def isRemainingTest(name: String): Boolean =
! isCodeVerification(name)

0 comments on commit 13e85d6

Please sign in to comment.