Metadata-Version: 1.1
Name: pytest-dbus-notification
Version: 1.0.0
Summary: D-BUS notifications for pytest results.
Home-page: https://github.com/bmathieu33/pytest-dbus-notification
Author: Bertrand Mathieu
Author-email: bert.mathieu at gmail.com
License: UNKNOWN
Description: A py.test plugin that displays test results using `D-BUS notifications <https://developer.gnome.org/notification-spec/>`_.
        
        This plugins requires the `dbus` module.
        
        Using in virtualenv
        -------------------
        
        As of 14 feb 2014, `you cannot install python-dbus with pip/easy_install
        <https://bugs.freedesktop.org/show_bug.cgi?id=55439>`_.
        
        You have two options:
        
        * install python-dbus in your virtualenv by downloading and building it
        * install python-dbus using your system package (like `apt-get install python-dbus`).
        
        In the latter case if your virtualenv does not use system packages (that's the default option), your virtualenv sitll hasn't `dbus` module available. Just copy it from system packages:
        
        .. code:: sh
        
          # From virtualenv root folder
          $ cp /usr/lib/pyshared/python2.7/_dbus_bindings.so lib/python2.7/site-packages/
          $ cp -r cp -r /usr/share/pyshared/dbus lib/python2.7/site-packages/dbus
          $ python
          Python 2.7.5+ (default, Sep 19 2013, 13:48:49) 
          [GCC 4.8.1] on linux2
          Type "help", "copyright", "credits" or "license" for more information.
          >>> import dbus
          >>> 
        
        
        Changelog
        ---------
        
        1.0.0 (2014-02-14)
        ==================
        
        - initial release
        
Keywords: pytest,pytest-,dbus,py.test
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python
Classifier: Topic :: Desktop Environment
Classifier: Topic :: Software Development :: Testing
Classifier: Topic :: Utilities
