8000 [CI] AltLinux runs only "local" tests. · postgrespro/testgres@8d68c68 · GitHub
[go: up one dir, main page]

Skip to content

Commit 8d68c68

Browse files
[CI] AltLinux runs only "local" tests.
We exclude "remote" tests until a problem with slow SSH connection has been resolved.
1 parent dd56a6c commit 8d68c68

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

Dockerfile--altlinux_10.tmpl

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,12 @@ USER test
9898
RUN chmod 700 ~/
9999
RUN mkdir -p ~/.ssh
100100

101+
#
102+
# Altlinux 10 and 11 too slowly create a new SSH connection (x6).
103+
#
104+
# So, we exclude the "remote" tests until this problem has been resolved.
105+
#
106+
101107
ENTRYPOINT sh -c " \
102108
set -eux; \
103109
echo HELLO FROM ENTRYPOINT; \
@@ -109,5 +115,5 @@ ssh-keygen -t rsa -f ~/.ssh/id_rsa -q -N ''; \
109115
cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys; \
110116
chmod 600 ~/.ssh/authorized_keys; \
111117
ls -la ~/.ssh/; \
112-
TEST_FILTER=\"\" bash ./run_tests.sh;"
118+
TEST_FILTER=\"TestgresTests or (TestTestgresCommon and (not remote_ops))\" bash ./run_tests.sh;"
113119

0 commit comments

Comments
 (0)
0