.travis.yml version setting for postgresql ignored
问题 With the following in my .travis.yml: addons: postgresql: "9.3" before_script: - psql --version - psql -c 'SELECT version();' -U postgres I get the following output: $ psql --version $ psql (PostgreSQL) 9.4.0 $ psql -c 'SELECT version();' -U postgres PostgreSQL 9.1.14 on x86_64-unknown-linux-gnu, compiled by gcc (Ubuntu/Linaro 4.6.3-1ubuntu5) 4.6.3, 64-bit Obviously there's something wrong here but I'm not sure how to tell Travis to actually use the postgres version I specified. I followed