parent
9a532af53b
commit
291f5b8997
@ -1,3 +1,4 @@
|
|||||||
nose-0.11.3.tar.gz
|
nose-0.11.3.tar.gz
|
||||||
nose-0.11.4.tar.gz
|
nose-0.11.4.tar.gz
|
||||||
/nose-1.0.0.tar.gz
|
/nose-1.0.0.tar.gz
|
||||||
|
/nose-1.1.1.tar.gz
|
||||||
|
@ -1,16 +0,0 @@
|
|||||||
Index: nose-0.11.4/functional_tests/doc_tests/test_coverage_html/coverage_html.rst
|
|
||||||
===================================================================
|
|
||||||
--- nose-0.11.4.orig/functional_tests/doc_tests/test_coverage_html/coverage_html.rst
|
|
||||||
+++ nose-0.11.4/functional_tests/doc_tests/test_coverage_html/coverage_html.rst
|
|
||||||
@@ -32,9 +32,9 @@ The console coverage output is printed,
|
|
||||||
test_covered.test_blah ... hi
|
|
||||||
ok
|
|
||||||
<BLANKLINE>
|
|
||||||
- Name Stmts Exec Cover Missing
|
|
||||||
+ Name Stmts Miss Cover Missing
|
|
||||||
-------------------------------------
|
|
||||||
- blah 4 3 75% 6
|
|
||||||
+ blah 4 1 75% 6
|
|
||||||
----------------------------------------------------------------------
|
|
||||||
Ran 1 test in ...s
|
|
||||||
<BLANKLINE>
|
|
@ -1,26 +0,0 @@
|
|||||||
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