1 new commit in pytest:

https://bitbucket.org/hpk42/pytest/commits/4b53ddc11152/
Changeset:   4b53ddc11152
User:        hpk42
Date:        2013-11-20 20:00:59
Summary:     removing pexpect from general dependencies because
it doesn't install on windows anymore.  Instead
to specific configurations for pexpect on py27 and py33
which only call the tests that need it.
Affected #:  1 file

diff -r 1b0415c6d1f54e6c908190f998ef6e2a5a9a1904 -r 
4b53ddc1115215d533e29f500a2694b713e3f785 tox.ini
--- a/tox.ini
+++ b/tox.ini
@@ -1,12 +1,11 @@
 [tox]
 distshare={homedir}/.tox/distshare
-envlist=flakes,py25,py26,py27,pypy,py27-nobyte,py32,py33,py27-xdist,py33-xdist,trial
+envlist=flakes,py25,py26,py27,pypy,py27-pexpect,py33-pexpect,py27-nobyte,py32,py33,py27-xdist,py33-xdist,trial
 
 [testenv]
 changedir=testing
 commands= py.test --lsof -rfsxX --junitxml={envlogdir}/junit-{envname}.xml []
 deps=
-    pexpect
     nose
 
 [testenv:genscript]
@@ -41,6 +40,20 @@
   py.test -n3 -rfsxX \
         --junitxml={envlogdir}/junit-{envname}.xml testing
 
+[testenv:py27-pexpect]
+changedir=testing
+basepython=python2.7
+deps=pexpect
+commands=
+  py.test -rfsxX test_pdb.py test_terminal.py test_unittest.py
+
+[testenv:py33-pexpect]
+changedir=testing
+basepython=python2.7
+deps={[testenv:py27-pexpect]deps}
+commands=
+  py.test -rfsxX test_pdb.py test_terminal.py test_unittest.py
+
 [testenv:py27-nobyte]
 changedir=.
 basepython=python2.7
@@ -55,7 +68,6 @@
 [testenv:trial]
 changedir=.
 deps=twisted
-     pexpect
 commands=
   py.test -rsxf \
         --junitxml={envlogdir}/junit-{envname}.xml 
{posargs:testing/test_unittest.py}

Repository URL: https://bitbucket.org/hpk42/pytest/

--

This is a commit notification from bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.
_______________________________________________
pytest-commit mailing list
pytest-commit@python.org
https://mail.python.org/mailman/listinfo/pytest-commit

Reply via email to