2 new commits in tox: https://bitbucket.org/hpk42/tox/commits/f37eb1b0e101/ Changeset: f37eb1b0e101 User: hpk42 Date: 2013-07-16 17:06:22 Summary: add new config options ``usedevelop`` and ``skipsdist`` as well as a command line option ``--develop`` to install the package-under-test in develop mode. thanks Monty Taylor. Affected #: 5 files
diff -r bfc4a27950dce50e8d49ede674ca73fdaecdf981 -r f37eb1b0e101edf09eebe9ca4eb5b83de4e9edfe CHANGELOG --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,10 @@ 1.5.1.dev ----------------- +- add new config options ``usedevelop`` and ``skipsdist`` as well as a + command line option ``--develop`` to install the package-under-test in develop mode. + thanks Monty Tailor for the PR. + - always unset PYTHONDONTWRITEBYTE because newer setuptools doesn't like it 1.5.0 diff -r bfc4a27950dce50e8d49ede674ca73fdaecdf981 -r f37eb1b0e101edf09eebe9ca4eb5b83de4e9edfe CONTRIBUTORS --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -10,3 +10,4 @@ Ronny Pfannschmidt Lukasz Balcerzak Philip Thiem +Monty Taylor diff -r bfc4a27950dce50e8d49ede674ca73fdaecdf981 -r f37eb1b0e101edf09eebe9ca4eb5b83de4e9edfe setup.py --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ description='virtualenv-based automation of test activities', long_description=open("README.rst").read(), url='http://tox.testrun.org/', - version='1.5.1.dev1', + version='1.5.1.dev2', license='http://opensource.org/licenses/MIT', platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'], author='holger krekel', diff -r bfc4a27950dce50e8d49ede674ca73fdaecdf981 -r f37eb1b0e101edf09eebe9ca4eb5b83de4e9edfe tox/__init__.py --- a/tox/__init__.py +++ b/tox/__init__.py @@ -1,5 +1,5 @@ # -__version__ = '1.5.1.dev1' +__version__ = '1.5.1.dev2' class exception: class Error(Exception): diff -r bfc4a27950dce50e8d49ede674ca73fdaecdf981 -r f37eb1b0e101edf09eebe9ca4eb5b83de4e9edfe toxbootstrap.py --- a/toxbootstrap.py +++ b/toxbootstrap.py @@ -58,7 +58,7 @@ """ -__version__ = '1.5.1.dev1' +__version__ = '1.5.1.dev2' import sys import os https://bitbucket.org/hpk42/tox/commits/8c7e68bd1c8e/ Changeset: 8c7e68bd1c8e User: hpk42 Date: 2013-07-16 17:10:42 Summary: remove obsolete tests - i think Lukasz left this in erranously Affected #: 1 file diff -r f37eb1b0e101edf09eebe9ca4eb5b83de4e9edfe -r 8c7e68bd1c8e5e29101ea9dc54c0525476295a0c tests/test_config.py --- a/tests/test_config.py +++ b/tests/test_config.py @@ -60,20 +60,6 @@ envconfig = config.envconfigs['devenv'] assert envconfig.envdir == config.toxworkdir.join('foobar') - def test_package_flag(self, tmpdir, newconfig): - config = newconfig([], """ - [testenv:py27] - """) - envconfig = config.envconfigs['py27'] - assert envconfig.package == True - - config = newconfig([], """ - [testenv:py27] - package = False - """) - envconfig = config.envconfigs['py27'] - assert envconfig.package == False - class TestConfigPackage: def test_defaults(self, tmpdir, newconfig): config = newconfig([], "") 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. _______________________________________________ pytest-commit mailing list pytest-commit@python.org http://mail.python.org/mailman/listinfo/pytest-commit