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

commits-noreply at bitbucket.org commits-noreply at bitbucket.org
Mon Jun 20 10:45:14 EDT 2016


2 new commits in tox:

https://bitbucket.org/hpk42/tox/commits/fdff7224c553/
Changeset:   fdff7224c553
Branch:      bittner/remove-invalid-return-value-in-toxcmdlin-1465935081972
User:        bittner
Date:        2016-06-14 20:11:23+00:00
Summary:     Remove invalid return value in tox.cmdline() example
Affected #:  1 file

diff -r 4dbfb1f1eb86b35cbd2c83461e1e294651e89cf6 -r fdff7224c55377485222377f3e870218d19fabfa doc/example/basic.txt
--- a/doc/example/basic.txt
+++ b/doc/example/basic.txt
@@ -260,8 +260,7 @@
             args = self.tox_args
             if args:
                 args = shlex.split(self.tox_args)
-            errno = tox.cmdline(args=args)
-            sys.exit(errno)
+            tox.cmdline(args=args)
 
     setup(
         #...,


https://bitbucket.org/hpk42/tox/commits/1503c3a65bc8/
Changeset:   1503c3a65bc8
User:        hpk42
Date:        2016-06-20 14:45:10+00:00
Summary:     Merged in bittner/tox/bittner/remove-invalid-return-value-in-toxcmdlin-1465935081972 (pull request #196)

Remove invalid return value in tox.cmdline() example
Affected #:  1 file

diff -r 365dc0ef97fdf052ae258d73b0f0b4ac10c17ed5 -r 1503c3a65bc8035d091155fcf410cf24d07dd677 doc/example/basic.txt
--- a/doc/example/basic.txt
+++ b/doc/example/basic.txt
@@ -260,8 +260,7 @@
             args = self.tox_args
             if args:
                 args = shlex.split(self.tox_args)
-            errno = tox.cmdline(args=args)
-            sys.exit(errno)
+            tox.cmdline(args=args)
 
     setup(
         #...,

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