diff --git a/.github/workflows/run.yaml b/.github/workflows/run.yaml index 43c6050..6ea079b 100644 --- a/.github/workflows/run.yaml +++ b/.github/workflows/run.yaml @@ -57,8 +57,6 @@ jobs: buildfarm-client:alpine \ --test \ --config ${{ matrix.builder }}.conf \ - --skip-steps=recovery-check \ - --skip-suites=recovery \ --delay-check \ ${{ matrix.branch }} # TODO: Remove --delay-check once this is fixed: diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index ffd19db..70b5820 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -51,8 +51,6 @@ jobs: buildfarm-client:alpine \ --test \ --config ${{ matrix.builder }}.conf \ - --skip-steps=recovery-check \ - --skip-suites=recovery \ --delay-check # TODO: Remove --delay-check once this is fixed: # https://www.postgresql.org/message-id/flat/fddd1cd6-dc16-40a2-9eb5-d7fef2101488%40technowledgy.de @@ -65,4 +63,3 @@ jobs: if: github.ref == 'refs/heads/main' with: path: build - key: ${{ steps.restore-cache.outputs.cache-primary-key }} \ No newline at end of file diff --git a/Dockerfile b/Dockerfile index 3cd3b38..8293f1a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -63,11 +63,4 @@ COPY *.conf /usr/src ENTRYPOINT ["/docker-entrypoint.sh"] # TODO: Remove --delay-check once this is fixed: # https://www.postgresql.org/message-id/flat/fddd1cd6-dc16-40a2-9eb5-d7fef2101488%40technowledgy.de -CMD [ \ - "--test", \ - "--config", \ - "autoconf.conf", \ - "--skip-steps=recovery-check", \ - "--skip-suites=recovery", \ - "--delay-check" \ -] +CMD ["--test", "--config", "autoconf.conf", "--delay-check"] diff --git a/test.sh b/test.sh index a98e988..3cb2cf8 100755 --- a/test.sh +++ b/test.sh @@ -17,8 +17,6 @@ docker run --rm \ --nosend --nostatus --verbose \ --from-source /mnt/source \ --config autoconf.conf \ - --skip-steps=recovery-check \ - --skip-suites=recovery \ --delay-check \ "$@" # TODO: Remove --delay-check once this is fixed: