Skip to content
This repository has been archived by the owner on Oct 25, 2022. It is now read-only.

Commit

Permalink
Run Django 1.9 py3 tests on Python 3.4.
Browse files Browse the repository at this point in the history
Django 1.9 drops support for Python 3.2 and 3.3.
  • Loading branch information
dracos committed Jul 14, 2015
1 parent e21448e commit b223cd8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ env:
- TOXENV=py27-1.9
- TOXENV=py32-1.7
- TOXENV=py32-1.8
- TOXENV=py32-1.9
- TOXENV=py34-1.9

matrix:
allow_failures:
- env: TOXENV=py27-1.9
- env: TOXENV=py32-1.9
- env: TOXENV=py34-1.9

install:
- pip install tox
Expand Down
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[tox]
envlist = flake8, py27-1.4, py{27,32}-{1.7,1.8,1.9}
envlist = flake8, py27-1.4, py{27,32}-{1.7,1.8}, py{27,34}-1.9

[testenv]
commands =
flake8: flake8 mapit mapit_gb mapit_global mapit_it mapit_no mapit_za project
py{27,32}: python -Wall manage.py test mapit mapit_gb
py{27,32,34}: python -Wall manage.py test mapit mapit_gb
deps =
flake8: flake8
1.4: Django>=1.4,<1.5
Expand All @@ -13,7 +13,7 @@ deps =
1.9: git+https://github.com/django/django.git@master#egg=django
passenv = CFLAGS
setenv =
py32: DYLD_FALLBACK_LIBRARY_PATH=/opt/local/lib:/usr/lib
py{32,34}: DYLD_FALLBACK_LIBRARY_PATH=/opt/local/lib:/usr/lib

[testenv:flake8]
skip_install = True

0 comments on commit b223cd8

Please sign in to comment.