summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Update the version number and the NEWS.release_1.3.4John Szakmeister2014-08-243-4/+5
|
* Update the CHANGELOG.John Szakmeister2014-08-241-0/+10
|
* Merge pull request #798 from dplepage/masterJohn Szakmeister2014-08-111-11/+12
|\ | | | | Recognize doctest options defined in other plugins.
| * Recognize doctest options defined in other plugins.Daniel Lepage2014-08-101-11/+12
| |
* | Merge pull request #799 from danudey/masterJohn Szakmeister2014-08-101-1/+1
|\ \ | | | | | | Fix typo in log capture help
| * | Fix typo in log capture helpDan Udey2014-04-281-1/+1
| |/
* | Merge pull request #822 from amatellanes/masterJohn Szakmeister2014-07-251-4/+4
|\ \ | | | | | | testid: fix some typos in the documentation
| * | Fix Testid docsamatellanes2014-06-241-4/+4
|/ /
* | Switch ContextSuite to use super() to keep the init-sequence correct.John Szakmeister2014-05-201-1/+1
| |
* | Merge pull request #811 from rkuska/masterJohn Szakmeister2014-05-201-0/+1
|\ \ | | | | | | Call super in LazySuite to access _removed_tests variable
| * | Call super in LazySuite to access _removed_tests variableRobert Kuska2014-05-191-0/+1
|/ /
* | Merge pull request #807 from paperlessreceipts/try_run-method-testJohn Szakmeister2014-05-122-1/+7
|\ \ | | | | | | Fix for try_run when using bound methods
| * | Fix for try_run when using bound methodsChristian Lyder Jacobsen2014-05-082-1/+7
|/ /
* | Update CHANGELOG.John Szakmeister2014-05-061-0/+4
| |
* | Bump the version number and update NEWS.release_1.3.3John Szakmeister2014-05-063-7/+4
| |
* | Bump the version number.release_1.3.2John Szakmeister2014-05-032-2/+2
| |
* | Update the NEWS file.John Szakmeister2014-05-031-11/+8
| |
* | Bring the CHANGELOG up-to-date.John Szakmeister2014-05-021-1/+8
|/
* Fix #779: xunit report file is written in --where directoryJohn Szakmeister2014-04-201-1/+1
| | | | | Since the creation of the file has been delayed, we need the full path to the file since --where will change our current working directory.
* Merge pull request #796 from brad/patch-1John Szakmeister2014-04-201-1/+1
|\ | | | | correcting typo, missing the word "run"
| * correcting typo, missing the word "run"Brad Pitcher2014-04-191-1/+1
| |
* | Fix #792: "Not a directory" error when using python setup.py nosetestsJohn Szakmeister2014-04-201-1/+4
|/ | | | | | The issue is that egg files can end up on our search path, and we treat all paths as though they are directories. Instead, we'll do an explicit check that it is a directory before attempting to load tests from it.
* Add a few tests with raising string exceptions.John Szakmeister2014-04-192-0/+62
|
* Skip coverage tests correctly in Python 2.5 when coverage not available.John Szakmeister2014-04-191-6/+7
|
* Whitelist rm and make in the tox configuration.John Szakmeister2014-04-191-0/+3
| | | | This prevents warnings about them not being in the virtual environment.
* Remove commented out lines in tox.ini.John Szakmeister2014-04-191-4/+1
| | | | They've not been used since the lines were added.
* Fix a traceback when using string exceptions.John Szakmeister2014-04-181-1/+1
| | | | | We need to check that the first argument to `issubclass()` is a class before using it, since we have the possibility that it's a string.
* Merge pull request #790 from mr-c/fix/nosetest-setup.cfg-ignoreJohn Szakmeister2014-04-101-8/+12
|\ | | | | setuptools nosetest command breaks build_ext
| * setuptools nosetest command breaks build_ext due to setup.cfg configuration ↵Michael R. Crusoe2014-03-271-8/+12
| | | | | | | | not being respected
* | Merge pull request #787 from AntoineD/masterJohn Szakmeister2014-04-102-2/+14
|\ \ | | | | | | | | | Fix #786: generator method fails with callable instance
| * | Fix #786: generator method fails with callable instanceAntoine Dechaume2014-04-102-2/+14
| | |
* | | Fix try_run on pypy.John Szakmeister2014-03-282-6/+6
| | | | | | | | | | | | | | | | | | | | | This is a continuation of the fix started in 192694ed for issue #783. Pypy didn't like the tactic taken, so let's be a little more direct about it. We're expecting a function, and if we don't get it then we want to look at the `__call__()` attribute.
* | | Add Python 3.4 support to tox and drop Python 2.4 and 2.5.John Szakmeister2014-03-281-1/+7
| | | | | | | | | | | | Tox no longer supports the latter two.
* | | Disable test_concurrent_shared.John Szakmeister2014-03-271-39/+42
| | | | | | | | | | | | It simply causes too many problems with Travis and other build farms.
* | | Merge pull request #788 from mitya57/masterJohn Szakmeister2014-03-271-2/+2
|\ \ \ | |_|/ |/| | Make issue680 test succeed with LC_ALL=C
| * | Make issue680 test succeed with LC_ALL=CDmitry Shachnev2014-03-191-2/+2
|/ / | | | | | | | | | | | | Previously, it was failing with: nose.proxy.UnicodeDecodeError: 'ascii' codec can't decode byte 0xe2 in position 189: ordinal not in range(128)
* | Fix #783: try_run is broken with Python 3.4John Szakmeister2014-03-192-1/+4
| | | | | | | | | | | | | | | | | | It turns out that we expected inspect.getargspec() to only work on functions (versus classes that are callable). Python 3.4 has changed this behavior and now happily returns the arg spec. Let's try to detect this situation by checking the __call__() method to if it's actually the method of a class. If so, pop the 'self' argument off of args--similar to what's done in the exceptional case below.
* | Fix #780: only set im_class in Python 2.xJohn Szakmeister2014-03-192-1/+3
| |
* | Update the changelog.John Szakmeister2014-03-191-0/+5
| |
* | Merge pull request #784 from mitya57/masterJohn Szakmeister2014-03-191-5/+5
|\ \ | |/ |/| Fix #782: Add missing quotes for filenames in doctest
| * Fix #782: Make doctest work with new configparser versionsDmitry Shachnev2014-03-181-5/+5
|/ | | | | | Upstream changeset http://hg.python.org/cpython/rev/791674a74e47 switched format from %s to %r, so we need to add some ellipses to work with both old and new versions.
* Regenerate the man page and readme.release_1.3.1John Szakmeister2014-03-102-4/+4
|
* Update the version in the CHANGELOG and in Nose.John Szakmeister2014-03-103-3/+3
|
* Update NEWS.John Szakmeister2014-03-101-9/+14
|
* Add another entry to the changelog.John Szakmeister2014-03-031-0/+1
|
* Fix a test in test_twisted.John Szakmeister2014-02-281-1/+1
| | | | | | With the new top-level domains, x.y.z became a valid domain name. The IETF has set stated that .invalid may not be installed as a top-level domain, so let's use x.y.invalid instead.
* Give credit to Charlie for the update to the testing documentation.John Szakmeister2014-02-211-0/+2
|
* Add missing support infrastructure for the attrib-static test.John Szakmeister2014-02-201-0/+4
|
* Merge pull request #775 from diminoten/masterJohn Szakmeister2014-02-201-2/+2
|\ | | | | Fix plugin test interface documentation.
| * Fix plugin test interface documentation. #773diminoten2014-02-191-2/+2
| |