@@ -27,7 +27,7 @@ def is_pypy(self):
27
27
PYTHON_MAIN_VERSIONS = ['python2.7' , 'python3.4' ]
28
28
PYTHON_VERSIONS = ['python2.6' , 'python2.7' , 'python3.2' , 'python3.3' ,
29
29
'python3.4' , 'pypy' , 'pypy3' ]
30
- PYTEST_VERSIONS = ['2.6.4 ' ]
30
+ PYTEST_VERSIONS = ['2.7.0 ' ]
31
31
DJANGO_VERSIONS = ['1.3' , '1.4' , '1.5' , '1.6' , '1.7' , '1.8' , 'master' ]
32
32
SETTINGS = ['sqlite' , 'sqlite_file' , 'mysql_myisam' , 'mysql_innodb' ,
33
33
'postgres' ]
@@ -78,7 +78,7 @@ def is_valid_env(env):
78
78
79
79
def requirements (env ):
80
80
yield 'pytest==%s' % (env .pytest_version )
81
- yield 'pytest-xdist==1.11 '
81
+ yield 'pytest-xdist==1.12 '
82
82
yield DJANGO_REQUIREMENTS [env .django_version ]
83
83
yield 'django-configurations==0.8'
84
84
@@ -110,7 +110,7 @@ def commands(uid, env):
110
110
yield 'sh -c "dropdb %(name)s;' \
111
111
' createdb %(name)s || exit 0"' % {'name' : db_name }
112
112
113
- yield 'py.test --ds=pytest_django_test.settings_%s --strict -r fEsxXw {posargs}' % env .settings
113
+ yield 'py.test --ds=pytest_django_test.settings_%s --strict -r fEsxXw {posargs:tests }' % env .settings
114
114
115
115
116
116
def testenv_name (env ):
0 commit comments