Skip to content

Commit

Permalink
Clean up travis config and settings.
Browse files Browse the repository at this point in the history
  • Loading branch information
pmac committed May 30, 2012
1 parent 77a0afc commit ee24f75
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions .travis.yml
Expand Up @@ -2,8 +2,6 @@ language: python
script: python manage.py test
python:
- "2.7"
env:
- TRAVIS_CI=true
install:
- pip install -r requirements-dev.txt --use-mirrors
notifications:
Expand Down
2 changes: 1 addition & 1 deletion settings/__init__.py
Expand Up @@ -3,7 +3,7 @@

if 'DATABASE_URL' in os.environ:
from .heroku import *
elif 'TRAVIS_CI' in os.environ:
elif 'TRAVIS' in os.environ:
from .travis import *
else:
try:
Expand Down

0 comments on commit ee24f75

Please sign in to comment.