Skip to content

Commit 6db32f8

Browse files
committed
Test on 1.8a1 also
1 parent 4b77dba commit 6db32f8

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

django_coverage_plugin/plugin.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,10 @@
88
import coverage.plugin
99

1010
import django.template
11-
from django.template import Lexer, TextNode
12-
from django.template.base import TOKEN_MAPPING
13-
from django.template import TOKEN_BLOCK, TOKEN_TEXT, TOKEN_VAR
11+
from django.template.base import (
12+
Lexer, TextNode,
13+
TOKEN_BLOCK, TOKEN_MAPPING, TOKEN_TEXT, TOKEN_VAR,
14+
)
1415

1516

1617
SHOW_PARSING = False

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# If you change this file, don't forget to update tox.ini and setup.py also.
2-
coverage >= 4.0a2
2+
coverage >= 4.0a3
33
Django
44
six >= 1.4.0
55
tox >= 1.8

tox.ini

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
# tox configuration for django_coverage_plugin.
22

33
[tox]
4-
envlist = py{27,34}-django{14,16,17},check
4+
envlist = py{27,34}-django{14,16,17,18},check
55

66
[testenv]
77
# Keep these dependencies in sync with the requirements.txt file.
88
deps =
99
django14: Django >=1.4, <1.5
1010
django16: Django >=1.6, <1.7
1111
django17: Django >=1.7, <1.8
12+
django18: Django >=1.8a1, <1.9
1213
six >= 1.4.0
13-
coverage >=4.0a2
14+
coverage >=4.0a3
1415

1516
commands =
1617
{envpython} -c "import tests.banner"

0 commit comments

Comments
 (0)