From c822515b362b6ff3af14e9ed106496424f80fe15 Mon Sep 17 00:00:00 2001 From: Rob Harrison Date: Thu, 27 Jun 2019 14:03:03 +0100 Subject: [PATCH] Update integration-tests.test.yml Remove unsupported versioning. Doesn't use stack deploy, uses docker-compose to run tests. --- postgres-backup-s3/integration-tests.test.yml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/postgres-backup-s3/integration-tests.test.yml b/postgres-backup-s3/integration-tests.test.yml index 554333e..32ccd69 100644 --- a/postgres-backup-s3/integration-tests.test.yml +++ b/postgres-backup-s3/integration-tests.test.yml @@ -2,21 +2,11 @@ version: '3.7' services: postgres: image: camptocamp/postgres:9.6 - deploy: - replicas: 1 environment: - POSTGRES_PASSWORD=12345 - POSTGRES_USER=user - - PGDATA=/var/lib/postgresql/data/pgdata - configs: - - source: master-db-config_2 - target: /etc/postgresql/postgresql.conf - command: -c 'config_file=/etc/postgresql/postgresql.conf' sut: build: . command: 'sh integration-tests.sh' depends_on: - postgres -configs: - master-db-config: - file: ./config/master.conf