parent
06d60ba37e
commit
9a532af53b
@ -0,0 +1,12 @@
|
||||
diff -r 068efd358695 nosetests.1
|
||||
--- a/nosetests.1 Mon May 02 15:32:48 2011 -0500
|
||||
+++ b/nosetests.1 Thu May 19 08:22:49 2011 -0700
|
||||
@@ -82,7 +82,7 @@
|
||||
In addition to passing command\-line options, you may also put
|
||||
configuration options in your project\'s \fIsetup.cfg\fP file, or a .noserc
|
||||
or nose.cfg file in your home directory. In any of these standard
|
||||
-.ini\-style config files, you put your nosetests configuration in a
|
||||
+\&.ini\-style config files, you put your nosetests configuration in a
|
||||
\fB[nosetests]\fP section. Options are the same as on the command line,
|
||||
with the \-\- prefix removed. For options that are simple switches, you
|
||||
must supply a value:
|
@ -0,0 +1,26 @@
|
||||
diff -r 018b43db7c47 -r 211cabb6719b CHANGELOG
|
||||
--- a/CHANGELOG Fri Mar 18 23:36:53 2011 -0500
|
||||
+++ b/CHANGELOG Fri Mar 18 23:38:55 2011 -0500
|
||||
@@ -1,4 +1,8 @@
|
||||
-1.0
|
||||
+1.0.1
|
||||
+
|
||||
+- Fixed problems with SkipTest in Python 3.2 (#389)
|
||||
+
|
||||
+1.0.0
|
||||
|
||||
- Made nose compatible with python 3. **Huge** thanks to Alex "foogod"
|
||||
Stewart!
|
||||
diff -r 018b43db7c47 -r 211cabb6719b nose/proxy.py
|
||||
--- a/nose/proxy.py Fri Mar 18 23:36:53 2011 -0500
|
||||
+++ b/nose/proxy.py Fri Mar 18 23:38:55 2011 -0500
|
||||
@@ -148,6 +148,9 @@
|
||||
from nose.plugins.skip import SkipTest
|
||||
self.assertMyTest(test)
|
||||
plugins = self.plugins
|
||||
+ if not isinstance(reason, Exception):
|
||||
+ # for Python 3.2+
|
||||
+ reason = Exception(reason)
|
||||
plugins.addError(self.test, (SkipTest, reason, None))
|
||||
self.result.addSkip(self.test, reason)
|
||||
|
Loading…
Reference in new issue