You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
local pg_wait = 'for i in $(seq 0 30); do if pg_isready -d ci -h pg -U ci -t 1; then break; elif [ "$i" = 30 ]; then echo "Timeout waiting for postgresql" >&2; exit 1; fi; sleep 1; done';
75
78
76
-
local debian_pg_pipeline(name, image, pg_tag='bullseye') = debian_pipeline(
79
+
local debian_pg_pipeline(name, image, pg_tag='bullseye', distro=auto_distro) = debian_pipeline(
77
80
name,
78
81
image,
79
82
deps=default_deps + pg_deps,
80
83
services=[pg_service],
81
84
before_pytest=[pg_wait],
82
-
pytest_opts='--pgsql "postgresql://ci:ci@pg/ci"'
85
+
pytest_opts='--pgsql "postgresql://ci:ci@pg/ci"',
86
+
distro=distro
83
87
);
84
88
85
89
local upgrade_deps = default_deps + ['git', 'curl', 'sqlite3', 'python3-prettytable'];
@@ -133,17 +137,17 @@ local upgrade_test(name, from='v0.1.10', intermediates=[], pg=false, pg_convert=
0 commit comments