File tree 1 file changed +5
-1
lines changed
1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ lazy val `finagle-postgres-integration` = project
109
109
110
110
lazy val test9 = integrationTests(" 9.6.17" )
111
111
lazy val test10 = integrationTests(" 10.11.0" ) // 10.12.0 fails to find libz for some reason
112
- lazy val test11 = integrationTests(" 11.7 .0" )
112
+ lazy val test11 = integrationTests(" 11.6 .0" )
113
113
114
114
def integrationTests (v : String ) = {
115
115
val majorVersion = v.split('.' ) match {
@@ -125,6 +125,10 @@ def integrationTests(v: String) = {
125
125
" io.zonky.test.postgres" % " embedded-postgres-binaries-darwin-amd64" % v % " test" ,
126
126
)
127
127
)
128
+ .settings(
129
+ parallelExecution in Test := false ,
130
+ javaOptions in Test += " -Duser.timezone=UTC" // TODO: investigate and submit a test to demonstrate that timezone handling is broken.
131
+ )
128
132
.settings(
129
133
Test / sourceGenerators += Def .task {
130
134
val file = (Test / sourceManaged).value / " com" / " twitter" / " finagle" / " postgres" / " IntegrationSpec.scala"
You can’t perform that action at this time.
0 commit comments