Merge pull request #3806 from matrix-org/erikj/limit_postgres_travis

Only start postgres instance for postgres tests on Travis CI
This commit is contained in:
Amber Brown 2018-09-07 01:06:21 +10:00 committed by GitHub
commit 1d371fc5b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -8,9 +8,6 @@ before_script:
- git remote set-branches --add origin develop
- git fetch origin develop
services:
- postgresql
matrix:
fast_finish: true
include:
@ -25,6 +22,8 @@ matrix:
- python: 2.7
env: TOX_ENV=py27-postgres TRIAL_FLAGS="-j 4"
services:
- postgresql
- python: 3.6
env: TOX_ENV=py36

1
changelog.d/3806.misc Normal file
View File

@ -0,0 +1 @@
Only start postgres instance for postgres tests on Travis CI