timescaledb/scripts/test_updates_no_constraints.sh
Erik Nordström b7a4851cd0 Run update tests in parallel
This change makes the update tests from each prior version of
TimescaleDB to run in parallel instead of in serial order.

This speeds up the testing significantly.
2018-10-29 15:19:16 +01:00

15 lines
332 B
Bash
Executable File

#!/usr/bin/env bash
#
# Prior to version 0.5.0, TimescaleDB did not fully support most constraints
# so we don't include update tests that test constraint support in pre-0.5.0
# versions.
set -e
set -o pipefail
SCRIPT_DIR=$(dirname $0)
TAGS="0.1.0 0.2.0 0.3.0 0.4.0 0.4.1 0.4.2"
TEST_VERSION="v1"
. ${SCRIPT_DIR}/test_updates.sh