Skip to content

Commit

Permalink
.travis.yml adjusted
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonas Depoix committed May 18, 2017
1 parent 9107a5c commit 2fdd149
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ services: postgresql
python:
- "3.6"
install:
- pip install -r requirements/testing
- pip install -r requirements/testing.txt
script:
- coverage run manage.py test
after_success: coveralls
#after_success: coveralls
11 changes: 11 additions & 0 deletions goto_cloud/settings/testing.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
from .base import *

ENVIRONMENT = 'testing'

DATABASES = {
'default': {
"USER": "postgres",
"HOST": "localhost",
"PASSWORD": "",
"PORT": 5432,
"NAME": "goto_cloud",
'ENGINE': 'django.db.backends.postgresql_psycopg2',
}
}

0 comments on commit 2fdd149

Please sign in to comment.