summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorStephen Finucane <stephen@that.guru>2018-10-30 11:35:41 +0000
committerStephen Finucane <stephen@that.guru>2018-10-30 15:32:48 +0000
commit4294e1de256d7a41ff1f65ad415ee32aae6c3704 (patch)
treeede5628c556ba2e70cae2e0ccc1c41520db65d82 /.travis.yml
parentee20fdea757e393f5951aaf640331176fc6cb807 (diff)
downloadpatchwork-4294e1de256d7a41ff1f65ad415ee32aae6c3704.tar
patchwork-4294e1de256d7a41ff1f65ad415ee32aae6c3704.tar.gz
travis: Stop testing PostgreSQL 11
Travis seems to be doing something really weird with PG11 since it was released a few weeks ago. This is currently breaking our CI and can't continue. It doesn't seem possible to mark this as an expected failure so simply remove it. We can re-add this once Travis gains proper support for this version via their addons. Signed-off-by: Stephen Finucane <stephen@that.guru> Suggested-by: Daniel Black <daniel@linux.ibm.com> Acked-by: Daniel Axtens <dja@axtens.net>
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml21
1 files changed, 0 insertions, 21 deletions
diff --git a/.travis.yml b/.travis.yml
index bb7ff14..6435545 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -47,27 +47,6 @@ matrix:
sudo: true
before_install:
- sudo -u postgres psql -c "grant ALL on DATABASE postgres to travis WITH GRANT OPTION;"
- - env:
- - PGPORT=5433
- - PW_TEST_DB_HOST=""
- - PW_TEST_DB_PORT=5433
- - PW_TEST_DB_TYPE=postgres
- - PW_TEST_DB_USER=travis
- python: 3.6
- dist: trusty
- addons:
- postgresql: "11"
- apt:
- sources:
- - sourceline: 'deb http://apt.postgresql.org/pub/repos/apt/ trusty-pgdg 11'
- key_url: 'https://www.postgresql.org/media/keys/ACCC4CF8.asc'
- packages:
- - postgresql-11
- - postgresql-client-11
- sudo: true
- before_install:
- - sudo -u postgres psql -c "grant ALL on DATABASE postgres to travis WITH GRANT OPTION;"
-
before_script:
- if [[ $PW_TEST_DB_TYPE == mysql ]]; then mysql -e 'create database patchwork character set utf8;'; fi