Skip to content

Commit a733e08

Browse files
committed
make local runs smoother on a couple projects
1 parent f4072df commit a733e08

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

proj/coulomb.conf

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ vars.proj.coulomb: ${vars.base} {
99

1010
extra.projects: ["coulomb_testsJVM"] // builds & tests everything.... I think
1111
extra.commands: ${vars.default-commands} [
12-
// otherwise sbt-gpg errors on `publish`
12+
// don't ask for passphrase when running locally
1313
"set every gpgWarnOnFailure := true"
14+
// prevent sbt-gpg from asking for passphrase when running locally
15+
"""set every gpgKey := Some("")"""
1416
]
1517
}

proj/doobie.conf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ vars.proj.doobie: ${vars.base} {
1010
"doobie" // just an aggregation, and causes missing-tut error
1111
]
1212
extra.commands: ${vars.default-commands} [
13+
// don't ask for passphrase when running locally
14+
"""set every gpgKey := Some("")"""
1315
// as per https://github.com/scala/community-builds/pull/835#issuecomment-455729365,
1416
// these subprojects require a Postgres instance for the tests to run
1517
"set postgres / Test / executeTests := Tests.Output(TestResult.Passed, Map(), Iterable())"

0 commit comments

Comments
 (0)