Skip to content

Commit

Permalink
Python 2.7 and 3.4 removed from Travis because of Django 2.1. 3.5 and…
Browse files Browse the repository at this point in the history
… 3.6 added instead
  • Loading branch information
Halil Kaya committed Dec 18, 2018
1 parent a98b830 commit 737f7e6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
9 changes: 6 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
language: python
env:
- TOXENV=py27
- TOXENV=py34
matrix:
include:
- python: 3.5
env: TOXENV=py35
- python: 3.6
env: TOXENV=py36
install: pip install tox
script: tox
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[tox]
envlist = py27, py34
envlist = py35, py36
skipsdist = True

[testenv]
deps =
-rconf/requirements.txt
commands = python manage.py test -v2
commands = python manage.py test --verbosity=2

0 comments on commit 737f7e6

Please sign in to comment.