summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Bump version and update changelog.release_1.3.7John Szakmeister2015-06-023-2/+7
|
* Merge pull request #916 from takluyver:i902.John Szakmeister2015-06-011-6/+4
|\ | | | | | | Fix loading packages from capitalised package on Windows.
| * Fix some logging and formatting with a recent loader change.John Szakmeister2015-06-011-6/+4
| |
| * Fix loading packages from capitalised package on WindowsThomas Kluyver2015-05-311-2/+2
| | | | | | | | Closes gh-902
* | Skip the multiprocess keyboard interrupt tests on certain platforms.John Szakmeister2015-06-011-0/+4
|/ | | | | We need os.setsid() and os.killpg() to be available to use these tests. Skip the tests on platforms that don't have them both.
* Bump version to 1.3.6.release_1.3.6John Szakmeister2015-04-044-7/+6
|
* Update version in nose.release_1.3.5John Szakmeister2015-04-041-1/+1
|
* Update NEWS.John Szakmeister2015-04-041-10/+5
|
* Update version and generated files.John Szakmeister2015-04-043-4/+19
|
* Update CHANGELOG.John Szakmeister2015-04-041-0/+5
|
* tox: allow newer coverage modulesJohn Szakmeister2015-04-041-1/+1
|
* Merge pull request #841 from fellowshipofone/masterJohn Szakmeister2015-04-041-13/+31
|\ | | | | [plugins] Handle multiprocess & cover together
| * [plugins] Move `is_worker` backNicolas Grasset2014-09-121-1/+1
| |
| * [plugins] Handle multiprocess & cover togetherNicolas Grasset2014-09-121-13/+31
| |
* | Merge pull request #894 from Infinidat/131John Szakmeister2015-04-042-3/+11
|\ \ | | | | | | Fix #131 - use os.stat to check if file is executable
| * | move is_executable to nose.utilArnon Yaari2015-03-192-10/+10
| | |
| * | Fix #131 - use os.stat to check if file is executableArnon Yaari2015-03-181-1/+9
|/ /
* | Fix #887: Py 2 vs 3: test name discrepancyJohn Szakmeister2015-03-171-0/+1
| | | | | | | | | | | | When wrapping a method, we were not copying the docstring. As a result, the output could differ between running under Python 2 and Python 3. The fix is simple: copy the docstring, if one exists.
* | Update CHANGELOG.John Szakmeister2015-02-171-0/+8
| |
* | Update a coverage plugin test to work with coverage 4.0.John Szakmeister2015-01-251-1/+6
| | | | | | | | | | The new coverage appears to provide some more information about the uncovered lines than previous versions.
* | Fix #875: nose doesn't collect tests when subpackage is given as argJohn Szakmeister2015-01-255-12/+67
| | | | | | | | | | | | | | | | | | | | | | | | | | | | When a subpackage is specified on the command line (e.g., `nosetests foo.bar`), it should pick up all the tests below the subpackage. The root of the problem came from how we resolved a filename for a package. We should really point to the package directory, instead of providing the path to the `__init__.py` file. Otherwise, we only end up attempting to select modules from the `__init__.py` instead of the whole tree underneath. We don't want to check for a path ending in `__init__.py` in `loadTestsFromModule()` because then we select the whole subtree of tests when `foo/bar/__init__.py` is specified when only tests in the __init__.py should be selected.
* | Strip trailing whitespace from loader.py.John Szakmeister2015-01-251-12/+12
| |
* | Don't use coverage 4.0 alphas for now.John Szakmeister2015-01-251-1/+1
| |
* | Merge pull request #862 from Gaurang033/masterJohn Szakmeister2014-12-193-2/+37
|\ \ | | | | | | Fix #859 Xunit plug-in not able to change testsuite name
| * | Fix #859 Xunit plug-in not able to change testsuite nameGaurang0332014-12-143-2/+37
|/ / | | | | | | | | | | | | Added command line parameter in Xunit plug-in to specify test suite name. Also added functional test case. Incorporated Comments
* | Fix #809: Tests not discovered for namespace packages on WindowsJohn Szakmeister2014-10-241-1/+7
| |
* | Fix #815: "ValueError: unsupported pickle protocol" with --with-id...John Szakmeister2014-10-241-0/+5
| | | | | | | | | | | | | | | | This would occur by running `nosetests --with-id` with a newer version of Python, and then run again with an older version of Python who doesn't recognize the pickle format. In this case, let's simply ignore the file, and move on allowing nosetests to overwrite it after gathering the data again.
* | Merge pull request #832 from BME-IK/fix-w-error-msgJohn Szakmeister2014-10-241-1/+1
|\ \ | |/ |/| Show ValueError about -w path name in quotes
| * Show ValueError about -w path name in quotes.Őry Máté2014-08-131-1/+1
| |
* | 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
| |