File python-nose.changes of Package python-nose
1
-------------------------------------------------------------------
2
Fri Jan 18 10:32:23 UTC 2013 - saschpe@suse.de
3
4
- Add nose-1.2.1-plugin-failuredetail-no-tb.patch: Don't fail if
5
traceback is missing
6
7
-------------------------------------------------------------------
8
Tue Nov 20 12:06:35 UTC 2012 - saschpe@suse.de
9
10
- Update to version 1.2.1:
11
+ Correct nose.__version__ (#549). Thanks to Chris Withers for the bug report.
12
- Changes from version 1.2.0:
13
+ Fixed issue where plugins included with `addplugins` keyword could
14
be overridden by built-in plugins (or third-party plugins registered
15
with setuptools) of the same name (#466).
16
+ Adds :option:`--cover-xml` and :option:`--cover-xml-file` (#311).
17
+ Adds support for :option:`--cover-branches` (related to #370).
18
+ Fixed Unicode issue on Python 3.1 with coverage (#442)
19
+ fixed class level fixture handling in multiprocessing plugin
20
+ Clue in the ``unittest`` module so it no longer prints traceback frames for
21
our clones of their simple assertion helpers (#453). Patch by Erik Rose.
22
+ Stop using the ``assert`` statement in ``ok_`` and ``eq_`` so they work under
23
``python -O`` (#504). Patch by Erik Rose.
24
+ Add loglevel option to logcapture plugin (#493).
25
+ Add doctest options flag (#7 from google code tracker).
26
+ Add support for using 2to3 with the nosetests setuptools command.
27
+ Add --cover-min-percentage flag to force test runs without sufficient
28
coverage to fail (#540). Patch by Domen Kožar.
29
+ Add travis-ci configuraion (#545).
30
+ Call reactor.stop from twisted thread (#301).
31
- Changes from version 1.1.2:
32
+ Fixed regression where the .coverage file was not saved (#439).
33
- Testsuite seems to work on SLE_11_SP2, reenable
34
- Symlink nosetests.1 manpage to nosetests-%{py_ver}.1
35
36
-------------------------------------------------------------------
37
Fri May 25 14:13:51 UTC 2012 - toddrme2178@gmail.com
38
39
- Added python 3 documentation package
40
41
-------------------------------------------------------------------
42
Fri Apr 27 14:07:19 UTC 2012 - toddrme2178@gmail.com
43
44
- Fix building python 3 package on openSUSE 11.4
45
46
-------------------------------------------------------------------
47
Thu Apr 26 08:47:38 UTC 2012 - toddrme2178@gmail.com
48
49
- Add python 3 packages
50
51
-------------------------------------------------------------------
52
Tue Apr 24 08:48:35 UTC 2012 - saschpe@suse.de
53
54
- Disable testsuite on openSUSE-11.4 and less to fix build
55
56
-------------------------------------------------------------------
57
Mon Apr 2 12:02:50 UTC 2012 - saschpe@suse.de
58
59
- Move doc package into seperate spec to break build cycle between
60
python-nose and python-Pygments (pulled in by python-Sphinx)
61
62
-------------------------------------------------------------------
63
Sat Mar 10 16:53:22 UTC 2012 - saschpe@gmx.de
64
65
- Simply macro usage
66
- Run testsuite
67
68
-------------------------------------------------------------------
69
Wed Sep 21 10:12:57 UTC 2011 - saschpe@suse.de
70
71
- Needs python-distribute at runtime
72
73
-------------------------------------------------------------------
74
Tue Sep 13 20:27:36 UTC 2011 - saschpe@suse.de
75
76
- Upper-case %description
77
78
-------------------------------------------------------------------
79
Thu Sep 8 16:44:02 UTC 2011 - saschpe@suse.de
80
81
- Disabled testsuite to fix build
82
83
-------------------------------------------------------------------
84
Thu Sep 8 15:43:42 UTC 2011 - saschpe@suse.de
85
86
- Update to 1.1.2:
87
* Fixed regression where the .coverage file was not saved (#439).
88
* Fixed missing nose.sphinx module in source distribution (#436).
89
- Spec file changes:
90
* Depend on python-distribute instead of python-setuptools
91
* Changed license to LGPL-2.0+ (SPDX style)
92
* Properly build and install HTML documentation
93
* Requires python-xml at runtime
94
95
-------------------------------------------------------------------
96
Mon Feb 7 21:34:42 UTC 2011 - lars@linux-schulserver.de
97
98
- update to 1.0.0:
99
+ Made nose compatible with python 3.
100
**Huge** thanks to Alex "foogod" Stewart!
101
102
-------------------------------------------------------------------
103
Tue Sep 14 08:30:06 UTC 2010 - coolo@novell.com
104
105
- update to 0.11.4
106
- Made nose compatible with Python 2.7.
107
- Fixed default plugin manager's use of plugin overriding. Thanks to
108
rob.daylife for the bug report and patch. (#323).
109
- Changed plugin loading so that external plugins loaded via extension
110
points can override builtin plugins with the same name.
111
... for more see CHANGELOG
112
113
-------------------------------------------------------------------
114
Wed Jul 22 17:45:32 CEST 2009 - lars@linux-schulserver.de
115
116
- update to 0.11.1
117
+ Fixed bug in xunit plugin xml escaping.
118
+ Fixed bug in xunit plugin that could cause test run to crash
119
after certain types of errors or actions by other plugins.
120
+ Fixed bug in testid plugin that could cause test run to crash
121
after certain types of errors or actions by other plugins.
122
+ Fixed bug in collect only plugin that caused it to fail when
123
collecting from test generators.
124
+ Fixed some broken html in docs.
125
- update to 0.11.1 contains changes from 0.11:
126
+ Added multiprocess plugin that allows tests to be run in parallel
127
across multiple processes.
128
+ Added logcapture plugin that captures logging messages and prints
129
them with failing tests.
130
+ Added optional HTML coverage reports to coverage plugin.
131
+ Added plugin that enables collection of tests in all modules.
132
+ Added --failed option to testid plugin. When this option is in
133
effect, if any tests failed in the previous test run (so long as
134
testid was active for that test run) only the failed tests will run.
135
+ Made it possible to 'yield test' in addition to 'yield test,' from
136
test generators.
137
+ Fixed bug that caused traceback inspector to fail when source code
138
file could not be found.
139
+ Fixed some issues limiting compatibility with IronPython.
140
+ Added support for module and test case fixtures in doctest files.
141
+ Added --traverse-namespace commandline option that restores old
142
default behavior of following all package __path__ entries when
143
loading tests from packages.
144
+ Added --first-package-wins commandline option to better support
145
testing parts of namespace packages.
146
+ Added versioned nosetests scripts (#123).
147
+ Fixed bug that would cause context teardown to fail to run in some
148
cases.
149
+ Enabled doctest plugin to use variable other than "_" as the default
150
result variable.
151
+ Fixed bug that would cause unicode output to crash output capture.
152
+ Added setUp and tearDown as valid names for module-level fixtures.
153
+ Fixed bug in list of valid names for package-level fixtures.
154
+ Updated man page generation using hacked up manpage writer from
155
docutils sandbox.
156
- fix some rpmlint warnings
157
158
-------------------------------------------------------------------
159
Wed Dec 03 00:00:00 CET 2008 - jfunk@funktronics.ca
160
161
- Update to 0.10.4
162
- nose is now compatible with python 2.6.
163
- 0.10.3
164
- Fixed bug in nosetests setup command that caused an exception to be raised
165
if run with options. Thanks to Philip Jenvey for the bug report (#191).
166
- Raised score of coverage plugin to 200, so that it will execute before
167
default-score plugins, and so be able to catch more import-time code. Thanks
168
to Ned Batchelder for the bug report and patch (#190).
169
- 0.10.2
170
- nose now runs under jython (jython svn trunk only at this time). Thanks to
171
Philip Jenvey, Pam Zerbinos and the other pycon sprinters (#160).
172
- Fixed bugs in loader, default plugin manager, and other modules that
173
caused plugin exceptions to be swallowed (#152, #155). Thanks to John J
174
Lee for the bug report and patch.
175
- Added selftest.py script, used to test a non-installed distribution of
176
nose (#49). Thanks to Antoine Pitrou and John J Lee for the bug report and
177
patches.
178
- Fixed bug in nose.importer that caused errors with namespace
179
packages. Thanks to Philip Jenvey for the bug report and patch (#164).
180
- Fixed bug in nose.tools.with_setup that prevented use of multiple
181
@with_setup decorators. Thanks to tlesher for the bug report (#151).
182
- Fixed bugs in handling of context fixtures for tests imported into a
183
package. Thanks to Gary Bernhardt for the bug report (#145).
184
- Fixed bugs in handling of config files and config file options for plugins
185
excluded by a RestrictedPluginManager. Thanks to John J Lee and Philip
186
Jenvey for the bug reports and patches (#158, #166).
187
- Updated ErrorClass exception reporting to be shorter and more clear. Thanks
188
to John J Lee for the patch (#142).
189
- Allowed plugins to load tests from modules starting with '_'. Thanks to John
190
J Lee for the patch (#82).
191
- Updated documentation about building as rpm (#127).
192
- Updated config to make including executable files the default on
193
IronPython as well as on Windows. Thanks to sanxiyn for the bug
194
report and patch (#183).
195
- Fixed a python 2.3 incompatibility in errorclass_failure.rst
196
(#173). Thanks to Philip Jenvey for the bug report and patch.
197
- Classes with metaclasses can now be collected as tests (#153).
198
- Made sure the document tree in the selector plugin test is accurate
199
and tested (#144). Thanks to John J Lee for the bug report and
200
patch.
201
- Fixed stack level used when dropping into pdb in a doctest
202
(#154). Thanks to John J Lee for the bug report and patch.
203
- Fixed bug in ErrorClassPlugin that made some missing keyword
204
argument errors obscure (#159). Thanks to Philip Jenvey for the bug
205
report and patch.
206
207
-------------------------------------------------------------------
208
Tue Nov 11 00:00:00 CET 2008 - cfarrell1980@gmail.com
209
210
- try building with --record-rpm instead of --record as per bnc#441794
211
212
-------------------------------------------------------------------
213
Thu Jul 10 00:00:00 CET 2008 - poeml@suse.de
214
215
- fix build, the man page wasn't found.
216
217
-------------------------------------------------------------------
218
Wed Mar 19 00:00:00 CET 2008 - jfunk@funktronics.ca
219
220
- Update to 0.10.1:
221
- Fixed bug in capture plugin that caused it to record captured output on the
222
test in the wrong attribute (#113)
223
- Fixed bug in result proxy that caused tests to fail if they accessed
224
certain result attibutes directly (#114). Thanks to Neilen Marais for the
225
bug report
226
- Fixed bug in capture plugin that caused other error formatters changes to
227
be lost if no output was captured (#124). Thanks to someone at ilorentz.org
228
for the bug report
229
- Fixed several bugs in the nosetests setup command that made some options
230
unusable and the command itself unusable when no options were set (#125,
231
[#126], #128). Thanks to Alain Poirier for the bug reports
232
- Fixed bug in handling of string errors (#130). Thanks to schl... at
233
uni-oldenburg.de for the bug report
234
- Fixed bug in coverage plugin option handling that prevented
235
--cover-package=mod1,mod2 from working (#117). Thanks to Allen Bierbaum for
236
the patch
237
- Fixed bug in profiler plugin that prevented output from being produced when
238
output capture was enabled on python 2.5 (#129). Thanks to James Casbon for
239
the patch
240
- Fixed bug in adapting 0.9 plugins to 0.10 (#119 part one). Thanks to John J
241
Lee for the bug report and tests
242
- Fixed bug in handling of argv in config and plugin test utilities (#119
243
part two). Thanks to John J Lee for the bug report and patch
244
- Fixed bug where Failure cases due to invalid test name specifications were
245
passed to plugins makeTest (#120). Thanks to John J Lee for the bug report
246
and patch
247
- Fixed bugs in doc css that mangled display in small windows. Thanks to Ben
248
Hoyt for the bug report and Michal Kwiatkowski for the fix
249
- Made it possible to pass a list or comma-separated string as defaultTest to
250
main(). Thanks to Allen Bierbaum for the suggestion and patch
251
- Fixed a bug in nose.selector and nose.util.getpackage that caused
252
directories with names that are not legal python identifiers to be
253
collected as packages (#143). Thanks to John J Lee for the bug report
254
255
-------------------------------------------------------------------
256
Tue Jul 04 00:00:00 CET 2006 - judas_iscariote@shorewall.net
257
258
- update
259
260
-------------------------------------------------------------------
261
Tue Jul 04 00:00:00 CET 2006 - jfunk@funktronics.ca
262
263
- Initial release
264
265