Skip to content

Commit

Permalink
Fixes related to travis tests compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
darklow committed Aug 9, 2016
1 parent f2397bc commit cf3e710
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
11 changes: 6 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ language: python
python:
- 2.6
- 2.7
- 3.3
- 3.4
- pypy
env:
Expand All @@ -23,16 +22,18 @@ script:
matrix:
exclude:
# Django doesn't support following combinations
- python: 3.3
env: DJANGO=1.4.20
- python: 3.4
env: DJANGO=1.4.20
- python: 2.6
env: DJANGO=1.6.11
- python: 2.6
env: DJANGO=1.7.7
env: DJANGO=1.7.11
- python: 2.6
env: DJANGO=1.8.14
- python: 2.6
env: DJANGO=1.9.9
- python: 2.6
env: DJANGO=1.8.3
env: DJANGO=1.10
- python: pypy
env: DJANGO=1.4.20
- python: pypy
Expand Down
4 changes: 2 additions & 2 deletions suit/tests/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@

from django.conf.global_settings import TEMPLATE_CONTEXT_PROCESSORS as TCP

TEMPLATE_CONTEXT_PROCESSORS = TCP + (
TEMPLATE_CONTEXT_PROCESSORS = list(TCP) + [
'django.core.context_processors.request',
)
]

SUIT_CONFIG = {}
TEST_RUNNER = 'suit.tests.SuitTestRunner'

0 comments on commit cf3e710

Please sign in to comment.