[Pytest-commit] commit/tox: 2 new changesets

commits-noreply at bitbucket.org commits-noreply at bitbucket.org
Thu May 8 20:45:33 CEST 2014


2 new commits in tox:

https://bitbucket.org/hpk42/tox/commits/b7f4d20540a2/
Changeset:   b7f4d20540a2
Branch:      fix_test_sdistonly
User:        aconrad
Date:        2014-05-01 02:22:37
Summary:     make test more specific, less prone to failures

Checking for the non-existence of the string "virtualenv" could fail because
paths may contain the word virtualenv.
Affected #:  1 file

diff -r 9c19ff552a68d173d0fa3146d4e1329d8b6b2012 -r b7f4d20540a24d102ee21dcb97985bcb0426ec4e tests/test_z_cmdline.py
--- a/tests/test_z_cmdline.py
+++ b/tests/test_z_cmdline.py
@@ -565,7 +565,7 @@
     result.stdout.fnmatch_lines([
         "*sdist-make*setup.py*",
     ])
-    assert "virtualenv" not in result.stdout.str()
+    assert "-mvirtualenv" not in result.stdout.str()
 
 def test_separate_sdist_no_sdistfile(cmd, initproj):
     distshare = cmd.tmpdir.join("distshare")


https://bitbucket.org/hpk42/tox/commits/eb294a76305a/
Changeset:   eb294a76305a
User:        hpk42
Date:        2014-05-08 20:45:30
Summary:     Merged in aconrad/tox/fix_test_sdistonly (pull request #103)

make test more specific, less prone to failures
Affected #:  1 file

diff -r dd8cf6df144ace26df9fe2ecacd56680b6c032bc -r eb294a76305a09c153b5e21ed5a0c1bc55a3400d tests/test_z_cmdline.py
--- a/tests/test_z_cmdline.py
+++ b/tests/test_z_cmdline.py
@@ -565,7 +565,7 @@
     result.stdout.fnmatch_lines([
         "*sdist-make*setup.py*",
     ])
-    assert "virtualenv" not in result.stdout.str()
+    assert "-mvirtualenv" not in result.stdout.str()
 
 def test_separate_sdist_no_sdistfile(cmd, initproj):
     distshare = cmd.tmpdir.join("distshare")

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

--

This is a commit notification from bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.


More information about the pytest-commit mailing list