diff options
| author | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2019-10-19 14:08:29 +0200 |
|---|---|---|
| committer | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2019-10-19 15:26:20 +0200 |
| commit | 214a8efe64c076ba0131210aed19d628ec92a91f (patch) | |
| tree | 3b7f46ad889882b17ab5eb2fb09674d7d35f39f0 /scripts | |
| parent | d5c7ec7ae8efdfb194b1ffe4b4c462396579206f (diff) | |
| download | psycopg2-214a8efe64c076ba0131210aed19d628ec92a91f.tar.gz | |
Test PG 11 and 12 on travis
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/travis_prepare.sh | 4 | ||||
| -rwxr-xr-x | scripts/travis_test.sh | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/scripts/travis_prepare.sh b/scripts/travis_prepare.sh index 26644a0..9d8e56d 100755 --- a/scripts/travis_prepare.sh +++ b/scripts/travis_prepare.sh @@ -117,6 +117,8 @@ cd / # Postgres versions supported by Travis CI if (( ! "$DONT_TEST_PRESENT" )); then + create 12 + create 11 create 10 create 9.6 create 9.5 @@ -140,5 +142,5 @@ fi # Postgres built from master if (( "$TEST_FUTURE" )); then - create 11 11-master + create 13 13-master fi diff --git a/scripts/travis_test.sh b/scripts/travis_test.sh index 5a5b765..a3de9ec 100755 --- a/scripts/travis_test.sh +++ b/scripts/travis_test.sh @@ -46,6 +46,8 @@ run_test () { # Postgres versions supported by Travis CI if (( ! "$DONT_TEST_PRESENT" )); then + run_test 12 + run_test 11 run_test 10 run_test 9.6 run_test 9.5 @@ -69,5 +71,5 @@ fi # Postgres built from master if (( "$TEST_FUTURE" )); then - run_test 11 + run_test 13 fi |
