Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

python-nose-1.0.0-7.1 RPM for i586

From OpenSuSE 11.4 for i586

Name: python-nose Distribution: openSUSE 11.4
Version: 1.0.0 Vendor: openSUSE
Release: 7.1 Build date: Fri Feb 18 23:01:10 2011
Group: Development/Libraries/Python Build host: build20
Size: 1142866 Source RPM: python-nose-1.0.0-7.1.src.rpm
Packager: http://bugs.opensuse.org
Url: http://somethingaboutorange.com/mrl/projects/nose/
Summary: A unittest extension offering automatic test suite discovery
nose provides an alternate test discovery and running process for unittest, one
that is intended to mimic the behavior of py.test as much as is reasonably
possible without resorting to magic. By default, nose will run tests in files
or directories under the current working directory whose names include "test".

nose also supports doctest tests and may optionally provide a test coverage
report.

Provides

Requires

License

GNU LGPL

Changelog

* Mon Feb 07 2011 lars@linux-schulserver.de
  - update to 1.0.0:
    + Made nose compatible with python 3.
    * *Huge** thanks to Alex "foogod" Stewart!
* Tue Sep 14 2010 coolo@novell.com
  - update to 0.11.4
    - Made nose compatible with Python 2.7.
    - Fixed default plugin manager's use of plugin overriding. Thanks to
    rob.daylife for the bug report and patch. (#323).
    - Changed plugin loading so that external plugins loaded via extension
    points can override builtin plugins with the same name.
    ... for more see CHANGELOG
* Wed Jul 22 2009 lars@linux-schulserver.de
  - update to 0.11.1
    + Fixed bug in xunit plugin xml escaping.
    + Fixed bug in xunit plugin that could cause test run to crash
      after certain types of errors or actions by other plugins.
    + Fixed bug in testid plugin that could cause test run to crash
      after certain types of errors or actions by other plugins.
    + Fixed bug in collect only plugin that caused it to fail when
      collecting from test generators.
    + Fixed some broken html in docs.
  - update to 0.11.1 contains changes from 0.11:
    + Added multiprocess plugin that allows tests to be run in parallel
      across multiple processes.
    + Added logcapture plugin that captures logging messages and prints
      them with failing tests.
    + Added optional HTML coverage reports to coverage plugin.
    + Added plugin that enables collection of tests in all modules.
    + Added --failed option to testid plugin. When this option is in
      effect, if any tests failed in the previous test run (so long as
      testid was active for that test run) only the failed tests will run.
    + Made it possible to 'yield test' in addition to 'yield test,' from
      test generators.
    + Fixed bug that caused traceback inspector to fail when source code
      file could not be found.
    + Fixed some issues limiting compatibility with IronPython.
    + Added support for module and test case fixtures in doctest files.
    + Added --traverse-namespace commandline option that restores old
      default behavior of following all package __path__ entries when
      loading tests from packages.
    + Added --first-package-wins commandline option to better support
      testing parts of namespace packages.
    + Added versioned nosetests scripts (#123).
    + Fixed bug that would cause context teardown to fail to run in some
      cases.
    + Enabled doctest plugin to use variable other than "_" as the default
      result variable.
    + Fixed bug that would cause unicode output to crash output capture.
    + Added setUp and tearDown as valid names for module-level fixtures.
    + Fixed bug in list of valid names for package-level fixtures.
    + Updated man page generation using hacked up manpage writer from
      docutils sandbox.
  - fix some rpmlint warnings
* Tue Dec 02 2008 jfunk@funktronics.ca
  - Update to 0.10.4
    - nose is now compatible with python 2.6.
  - 0.10.3
    - Fixed bug in nosetests setup command that caused an exception to be raised
    if run with options. Thanks to Philip Jenvey for the bug report (#191).
    - Raised score of coverage plugin to 200, so that it will execute before
    default-score plugins, and so be able to catch more import-time code. Thanks
    to Ned Batchelder for the bug report and patch (#190).
  - 0.10.2
    - nose now runs under jython (jython svn trunk only at this time). Thanks to
    Philip Jenvey, Pam Zerbinos and the other pycon sprinters (#160).
    - Fixed bugs in loader, default plugin manager, and other modules that
    caused plugin exceptions to be swallowed (#152, #155). Thanks to John J
    Lee for the bug report and patch.
    - Added selftest.py script, used to test a non-installed distribution of
    nose (#49). Thanks to Antoine Pitrou and John J Lee for the bug report and
    patches.
    - Fixed bug in nose.importer that caused errors with namespace
    packages. Thanks to Philip Jenvey for the bug report and patch (#164).
    - Fixed bug in nose.tools.with_setup that prevented use of multiple
    @with_setup decorators. Thanks to tlesher for the bug report (#151).
    - Fixed bugs in handling of context fixtures for tests imported into a
    package. Thanks to Gary Bernhardt for the bug report (#145).
    - Fixed bugs in handling of config files and config file options for plugins
    excluded by a RestrictedPluginManager. Thanks to John J Lee and Philip
    Jenvey for the bug reports and patches (#158, #166).
    - Updated ErrorClass exception reporting to be shorter and more clear. Thanks
    to John J Lee for the patch (#142).
    - Allowed plugins to load tests from modules starting with '_'. Thanks to John
    J Lee for the patch (#82).
    - Updated documentation about building as rpm (#127).
    - Updated config to make including executable files the default on
    IronPython as well as on Windows. Thanks to sanxiyn for the bug
    report and patch (#183).
    - Fixed a python 2.3 incompatibility in errorclass_failure.rst
    (#173). Thanks to Philip Jenvey for the bug report and patch.
    - Classes with metaclasses can now be collected as tests (#153).
    - Made sure the document tree in the selector plugin test is accurate
    and tested (#144). Thanks to John J Lee for the bug report and
    patch.
    - Fixed stack level used when dropping into pdb in a doctest
    (#154). Thanks to John J Lee for the bug report and patch.
    - Fixed bug in ErrorClassPlugin that made some missing keyword
    argument errors obscure (#159). Thanks to Philip Jenvey for the bug
    report and patch.
* Tue Nov 11 2008 @gmail.com
  - try building with --record-rpm instead of --record as per bnc#441794
* Wed Jul 09 2008 poeml@suse.de
  - fix build, the man page wasn't found.
* Tue Mar 18 2008 jfunk@funktronics.ca
  - Update to 0.10.1:
    - Fixed bug in capture plugin that caused it to record captured output on the
    test in the wrong attribute (#113)
    - Fixed bug in result proxy that caused tests to fail if they accessed
    certain result attibutes directly (#114). Thanks to Neilen Marais for the
    bug report
    - Fixed bug in capture plugin that caused other error formatters changes to
    be lost if no output was captured (#124). Thanks to someone at ilorentz.org
    for the bug report
    - Fixed several bugs in the nosetests setup command that made some options
    unusable and the command itself unusable when no options were set (#125,
    [#126], #128). Thanks to Alain Poirier for the bug reports
    - Fixed bug in handling of string errors (#130). Thanks to schl... at
    uni-oldenburg.de for the bug report
    - Fixed bug in coverage plugin option handling that prevented
    - -cover-package=mod1,mod2 from working (#117). Thanks to Allen Bierbaum for
    the patch
    - Fixed bug in profiler plugin that prevented output from being produced when
    output capture was enabled on python 2.5 (#129). Thanks to James Casbon for
    the patch
    - Fixed bug in adapting 0.9 plugins to 0.10 (#119 part one). Thanks to John J
    Lee for the bug report and tests
    - Fixed bug in handling of argv in config and plugin test utilities (#119
    part two). Thanks to John J Lee for the bug report and patch
    - Fixed bug where Failure cases due to invalid test name specifications were
    passed to plugins makeTest (#120). Thanks to John J Lee for the bug report
    and patch
    - Fixed bugs in doc css that mangled display in small windows. Thanks to Ben
    Hoyt for the bug report and Michal Kwiatkowski for the fix
    - Made it possible to pass a list or comma-separated string as defaultTest to
    main(). Thanks to Allen Bierbaum for the suggestion and patch
    - Fixed a bug in nose.selector and nose.util.getpackage that caused
    directories with names that are not legal python identifiers to be
    collected as packages (#143). Thanks to John J Lee for the bug report
* Mon Jul 03 2006 judas_iscariote@shorewall.net
  - update
* Mon Jul 03 2006 jfunk@funktronics.ca
  - Initial release

Files

/usr/bin/nosetests
/usr/bin/nosetests-2.7
/usr/lib/python2.7/site-packages/nose
/usr/lib/python2.7/site-packages/nose-1.0.0-py2.7.egg-info
/usr/lib/python2.7/site-packages/nose-1.0.0-py2.7.egg-info/PKG-INFO
/usr/lib/python2.7/site-packages/nose-1.0.0-py2.7.egg-info/SOURCES.txt
/usr/lib/python2.7/site-packages/nose-1.0.0-py2.7.egg-info/dependency_links.txt
/usr/lib/python2.7/site-packages/nose-1.0.0-py2.7.egg-info/entry_points.txt
/usr/lib/python2.7/site-packages/nose-1.0.0-py2.7.egg-info/not-zip-safe
/usr/lib/python2.7/site-packages/nose-1.0.0-py2.7.egg-info/top_level.txt
/usr/lib/python2.7/site-packages/nose/__init__.py
/usr/lib/python2.7/site-packages/nose/__init__.pyc
/usr/lib/python2.7/site-packages/nose/case.py
/usr/lib/python2.7/site-packages/nose/case.pyc
/usr/lib/python2.7/site-packages/nose/commands.py
/usr/lib/python2.7/site-packages/nose/commands.pyc
/usr/lib/python2.7/site-packages/nose/config.py
/usr/lib/python2.7/site-packages/nose/config.pyc
/usr/lib/python2.7/site-packages/nose/core.py
/usr/lib/python2.7/site-packages/nose/core.pyc
/usr/lib/python2.7/site-packages/nose/exc.py
/usr/lib/python2.7/site-packages/nose/exc.pyc
/usr/lib/python2.7/site-packages/nose/ext
/usr/lib/python2.7/site-packages/nose/ext/__init__.py
/usr/lib/python2.7/site-packages/nose/ext/__init__.pyc
/usr/lib/python2.7/site-packages/nose/ext/dtcompat.py
/usr/lib/python2.7/site-packages/nose/ext/dtcompat.pyc
/usr/lib/python2.7/site-packages/nose/failure.py
/usr/lib/python2.7/site-packages/nose/failure.pyc
/usr/lib/python2.7/site-packages/nose/importer.py
/usr/lib/python2.7/site-packages/nose/importer.pyc
/usr/lib/python2.7/site-packages/nose/inspector.py
/usr/lib/python2.7/site-packages/nose/inspector.pyc
/usr/lib/python2.7/site-packages/nose/loader.py
/usr/lib/python2.7/site-packages/nose/loader.pyc
/usr/lib/python2.7/site-packages/nose/plugins
/usr/lib/python2.7/site-packages/nose/plugins/__init__.py
/usr/lib/python2.7/site-packages/nose/plugins/__init__.pyc
/usr/lib/python2.7/site-packages/nose/plugins/allmodules.py
/usr/lib/python2.7/site-packages/nose/plugins/allmodules.pyc
/usr/lib/python2.7/site-packages/nose/plugins/attrib.py
/usr/lib/python2.7/site-packages/nose/plugins/attrib.pyc
/usr/lib/python2.7/site-packages/nose/plugins/base.py
/usr/lib/python2.7/site-packages/nose/plugins/base.pyc
/usr/lib/python2.7/site-packages/nose/plugins/builtin.py
/usr/lib/python2.7/site-packages/nose/plugins/builtin.pyc
/usr/lib/python2.7/site-packages/nose/plugins/capture.py
/usr/lib/python2.7/site-packages/nose/plugins/capture.pyc
/usr/lib/python2.7/site-packages/nose/plugins/collect.py
/usr/lib/python2.7/site-packages/nose/plugins/collect.pyc
/usr/lib/python2.7/site-packages/nose/plugins/cover.py
/usr/lib/python2.7/site-packages/nose/plugins/cover.pyc
/usr/lib/python2.7/site-packages/nose/plugins/debug.py
/usr/lib/python2.7/site-packages/nose/plugins/debug.pyc
/usr/lib/python2.7/site-packages/nose/plugins/deprecated.py
/usr/lib/python2.7/site-packages/nose/plugins/deprecated.pyc
/usr/lib/python2.7/site-packages/nose/plugins/doctests.py
/usr/lib/python2.7/site-packages/nose/plugins/doctests.pyc
/usr/lib/python2.7/site-packages/nose/plugins/errorclass.py
/usr/lib/python2.7/site-packages/nose/plugins/errorclass.pyc
/usr/lib/python2.7/site-packages/nose/plugins/failuredetail.py
/usr/lib/python2.7/site-packages/nose/plugins/failuredetail.pyc
/usr/lib/python2.7/site-packages/nose/plugins/isolate.py
/usr/lib/python2.7/site-packages/nose/plugins/isolate.pyc
/usr/lib/python2.7/site-packages/nose/plugins/logcapture.py
/usr/lib/python2.7/site-packages/nose/plugins/logcapture.pyc
/usr/lib/python2.7/site-packages/nose/plugins/manager.py
/usr/lib/python2.7/site-packages/nose/plugins/manager.pyc
/usr/lib/python2.7/site-packages/nose/plugins/multiprocess.py
/usr/lib/python2.7/site-packages/nose/plugins/multiprocess.pyc
/usr/lib/python2.7/site-packages/nose/plugins/plugintest.py
/usr/lib/python2.7/site-packages/nose/plugins/plugintest.pyc
/usr/lib/python2.7/site-packages/nose/plugins/prof.py
/usr/lib/python2.7/site-packages/nose/plugins/prof.pyc
/usr/lib/python2.7/site-packages/nose/plugins/skip.py
/usr/lib/python2.7/site-packages/nose/plugins/skip.pyc
/usr/lib/python2.7/site-packages/nose/plugins/testid.py
/usr/lib/python2.7/site-packages/nose/plugins/testid.pyc
/usr/lib/python2.7/site-packages/nose/plugins/xunit.py
/usr/lib/python2.7/site-packages/nose/plugins/xunit.pyc
/usr/lib/python2.7/site-packages/nose/proxy.py
/usr/lib/python2.7/site-packages/nose/proxy.pyc
/usr/lib/python2.7/site-packages/nose/pyversion.py
/usr/lib/python2.7/site-packages/nose/pyversion.pyc
/usr/lib/python2.7/site-packages/nose/result.py
/usr/lib/python2.7/site-packages/nose/result.pyc
/usr/lib/python2.7/site-packages/nose/selector.py
/usr/lib/python2.7/site-packages/nose/selector.pyc
/usr/lib/python2.7/site-packages/nose/sphinx
/usr/lib/python2.7/site-packages/nose/sphinx/__init__.py
/usr/lib/python2.7/site-packages/nose/sphinx/__init__.pyc
/usr/lib/python2.7/site-packages/nose/sphinx/pluginopts.py
/usr/lib/python2.7/site-packages/nose/sphinx/pluginopts.pyc
/usr/lib/python2.7/site-packages/nose/suite.py
/usr/lib/python2.7/site-packages/nose/suite.pyc
/usr/lib/python2.7/site-packages/nose/tools.py
/usr/lib/python2.7/site-packages/nose/tools.pyc
/usr/lib/python2.7/site-packages/nose/twistedtools.py
/usr/lib/python2.7/site-packages/nose/twistedtools.pyc
/usr/lib/python2.7/site-packages/nose/usage.txt
/usr/lib/python2.7/site-packages/nose/util.py
/usr/lib/python2.7/site-packages/nose/util.pyc
/usr/share/doc/packages/python-nose
/usr/share/doc/packages/python-nose/AUTHORS
/usr/share/doc/packages/python-nose/CHANGELOG
/usr/share/doc/packages/python-nose/NEWS
/usr/share/doc/packages/python-nose/README.txt
/usr/share/doc/packages/python-nose/doc
/usr/share/doc/packages/python-nose/doc/Makefile
/usr/share/doc/packages/python-nose/doc/api
/usr/share/doc/packages/python-nose/doc/api.rst
/usr/share/doc/packages/python-nose/doc/api/commands.rst
/usr/share/doc/packages/python-nose/doc/api/config.rst
/usr/share/doc/packages/python-nose/doc/api/core.rst
/usr/share/doc/packages/python-nose/doc/api/importer.rst
/usr/share/doc/packages/python-nose/doc/api/inspector.rst
/usr/share/doc/packages/python-nose/doc/api/loader.rst
/usr/share/doc/packages/python-nose/doc/api/plugin_manager.rst
/usr/share/doc/packages/python-nose/doc/api/proxy.rst
/usr/share/doc/packages/python-nose/doc/api/result.rst
/usr/share/doc/packages/python-nose/doc/api/selector.rst
/usr/share/doc/packages/python-nose/doc/api/suite.rst
/usr/share/doc/packages/python-nose/doc/api/test_cases.rst
/usr/share/doc/packages/python-nose/doc/api/twistedtools.rst
/usr/share/doc/packages/python-nose/doc/api/util.rst
/usr/share/doc/packages/python-nose/doc/conf.py
/usr/share/doc/packages/python-nose/doc/contributing.rst
/usr/share/doc/packages/python-nose/doc/developing.rst
/usr/share/doc/packages/python-nose/doc/docstring.py
/usr/share/doc/packages/python-nose/doc/finding_tests.rst
/usr/share/doc/packages/python-nose/doc/further_reading.rst
/usr/share/doc/packages/python-nose/doc/index.html
/usr/share/doc/packages/python-nose/doc/index.rst
/usr/share/doc/packages/python-nose/doc/man.rst
/usr/share/doc/packages/python-nose/doc/manbuilder.py
/usr/share/doc/packages/python-nose/doc/manbuilder.pyc
/usr/share/doc/packages/python-nose/doc/manpage.py
/usr/share/doc/packages/python-nose/doc/manpage.pyc
/usr/share/doc/packages/python-nose/doc/more_info.rst
/usr/share/doc/packages/python-nose/doc/news.rst
/usr/share/doc/packages/python-nose/doc/plugins
/usr/share/doc/packages/python-nose/doc/plugins.rst
/usr/share/doc/packages/python-nose/doc/plugins/allmodules.rst
/usr/share/doc/packages/python-nose/doc/plugins/attrib.rst
/usr/share/doc/packages/python-nose/doc/plugins/builtin.rst
/usr/share/doc/packages/python-nose/doc/plugins/capture.rst
/usr/share/doc/packages/python-nose/doc/plugins/collect.rst
/usr/share/doc/packages/python-nose/doc/plugins/cover.rst
/usr/share/doc/packages/python-nose/doc/plugins/debug.rst
/usr/share/doc/packages/python-nose/doc/plugins/deprecated.rst
/usr/share/doc/packages/python-nose/doc/plugins/doctests.rst
/usr/share/doc/packages/python-nose/doc/plugins/documenting.rst
/usr/share/doc/packages/python-nose/doc/plugins/errorclasses.rst
/usr/share/doc/packages/python-nose/doc/plugins/failuredetail.rst
/usr/share/doc/packages/python-nose/doc/plugins/interface.rst
/usr/share/doc/packages/python-nose/doc/plugins/isolate.rst
/usr/share/doc/packages/python-nose/doc/plugins/logcapture.rst
/usr/share/doc/packages/python-nose/doc/plugins/multiprocess.rst
/usr/share/doc/packages/python-nose/doc/plugins/other.rst
/usr/share/doc/packages/python-nose/doc/plugins/prof.rst
/usr/share/doc/packages/python-nose/doc/plugins/skip.rst
/usr/share/doc/packages/python-nose/doc/plugins/testid.rst
/usr/share/doc/packages/python-nose/doc/plugins/testing.rst
/usr/share/doc/packages/python-nose/doc/plugins/writing.rst
/usr/share/doc/packages/python-nose/doc/plugins/xunit.rst
/usr/share/doc/packages/python-nose/doc/setuptools_integration.rst
/usr/share/doc/packages/python-nose/doc/testing.rst
/usr/share/doc/packages/python-nose/doc/testing_tools.rst
/usr/share/doc/packages/python-nose/doc/usage.rst
/usr/share/doc/packages/python-nose/doc/writing_tests.rst
/usr/share/doc/packages/python-nose/examples
/usr/share/doc/packages/python-nose/examples/attrib_plugin.py
/usr/share/doc/packages/python-nose/examples/html_plugin
/usr/share/doc/packages/python-nose/examples/html_plugin/htmlplug.py
/usr/share/doc/packages/python-nose/examples/html_plugin/setup.py
/usr/share/doc/packages/python-nose/examples/plugin
/usr/share/doc/packages/python-nose/examples/plugin/plug.py
/usr/share/doc/packages/python-nose/examples/plugin/setup.py
/usr/share/doc/packages/python-nose/lgpl.txt
/usr/share/man/man1/nosetests.1.gz


Generated by rpm2html 1.8.1

Fabrice Bellet, Mon May 20 11:55:49 2013