From a4c2539dc1fa560160a9c18249e28ecef37bd20e Mon Sep 17 00:00:00 2001 From: Pavel Tiunov Date: Mon, 9 Mar 2020 17:52:03 -0700 Subject: [PATCH] Fix tests Postgres version --- packages/cubejs-schema-compiler/test/DbRunner.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cubejs-schema-compiler/test/DbRunner.js b/packages/cubejs-schema-compiler/test/DbRunner.js index 282dcaf499229..1eebf99f07dd8 100644 --- a/packages/cubejs-schema-compiler/test/DbRunner.js +++ b/packages/cubejs-schema-compiler/test/DbRunner.js @@ -65,7 +65,7 @@ class PostgresDBRunner extends BaseDbRunner { } async containerLazyInit() { - return new GenericContainer('postgres') + return new GenericContainer('postgres', '9.6.8') .withEnv("POSTGRES_USER", 'root') .withEnv("POSTGRES_DB", 'model_test') .withExposedPorts(this.port())