Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Only start postgres instance for postgres tests on Travis CI #3806

Merged
merged 2 commits into from
Sep 6, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@ before_script:
- git remote set-branches --add origin develop
- git fetch origin develop

services:
- postgresql

matrix:
fast_finish: true
include:
Expand All @@ -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
Expand Down
1 change: 1 addition & 0 deletions changelog.d/3806.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Only start postgres instance for postgres tests on Travis CI